Revert "[21.05] php/generic: Allow to extend PHP_INI_SCAN_DIR"

This commit is contained in:
Kim Lindberger 2021-06-21 16:08:31 +02:00 committed by GitHub
parent 0d85f682c5
commit 65a1707f25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -125,15 +125,15 @@ let
ln -s ${extraInit} $out/lib/php.ini
if test -e $out/bin/php; then
wrapProgram $out/bin/php --prefix PHP_INI_SCAN_DIR : $out/lib
wrapProgram $out/bin/php --set PHP_INI_SCAN_DIR $out/lib
fi
if test -e $out/bin/php-fpm; then
wrapProgram $out/bin/php-fpm --prefix PHP_INI_SCAN_DIR : $out/lib
wrapProgram $out/bin/php-fpm --set PHP_INI_SCAN_DIR $out/lib
fi
if test -e $out/bin/phpdbg; then
wrapProgram $out/bin/phpdbg --prefix PHP_INI_SCAN_DIR : $out/lib
wrapProgram $out/bin/phpdbg --set PHP_INI_SCAN_DIR $out/lib
fi
'';
};