about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-22 18:46:44 +0200
committerGitHub <noreply@github.com>2021-06-22 18:46:44 +0200
commitb4b3372763cd348141fd8db9318f4e0bb1328ada (patch)
treec4b7539147e9f98de39c8305576c7932d24de3fb /pkgs/development/interpreters
parentbb8c2116dd2d03775c96e0695bfbace7074308b4 (diff)
parent0d9496f7be3967ef64b8aebff19e6b9c7eaf6e32 (diff)
Merge pull request #127677 from NixOS/revert-125405-patch-1
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/php/generic.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/php/generic.nix b/pkgs/development/interpreters/php/generic.nix
index d86ea48afe1af..558fa45a1fd91 100644
--- a/pkgs/development/interpreters/php/generic.nix
+++ b/pkgs/development/interpreters/php/generic.nix
@@ -124,15 +124,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
               '';
             };