Git fork

Merge branch 'jk/use-perl-path-consistently'

Tests had a few places where we ignored PERL_PATH and blindly used
/usr/bin/perl, which have been corrected.

* jk/use-perl-path-consistently:
t/lib-httpd: pass PERL_PATH to CGI scripts

+3 -1
+2
t/lib-httpd/apache.conf
··· 101 101 Alias /dumb/ www/ 102 102 Alias /auth/dumb/ www/auth/dumb/ 103 103 104 + SetEnv PERL_PATH ${PERL_PATH} 105 + 104 106 <LocationMatch /smart/> 105 107 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH} 106 108 SetEnv GIT_HTTP_EXPORT_ALL
+1 -1
t/lib-httpd/apply-one-time-perl.sh
··· 13 13 export LC_ALL 14 14 15 15 "$GIT_EXEC_PATH/git-http-backend" >out 16 - perl -pe "$(cat one-time-perl)" out >out_modified 16 + "$PERL_PATH" -pe "$(cat one-time-perl)" out >out_modified 17 17 18 18 if cmp -s out out_modified 19 19 then