about summary refs log tree commit diff
path: root/pkgs/servers/x11
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2019-10-31 17:59:18 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-01 14:44:44 -0400
commitb7f4bda2827e4adc76dd30d6fd5257ed4f49b21d (patch)
treea304936e553f074a31d1ac18f190a8c9beace795 /pkgs/servers/x11
parent7eecf4f8fb288dcc4a32595036421bfcc38699e6 (diff)
downloadnixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.tar
nixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.tar.gz
nixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.tar.bz2
nixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.tar.lz
nixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.tar.xz
nixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.tar.zst
nixlib-b7f4bda2827e4adc76dd30d6fd5257ed4f49b21d.zip
treewide: `*Phase(s)?` variables are optional
If these aren't defined, the stdenv defaults are used in the `*Phase`
case, or no extra phases are done, in the `*Phases` case.
Diffstat (limited to 'pkgs/servers/x11')
-rw-r--r--pkgs/servers/x11/xorg/imake-setup-hook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/x11/xorg/imake-setup-hook.sh b/pkgs/servers/x11/xorg/imake-setup-hook.sh
index e743093af0ec..351ffab34d0f 100644
--- a/pkgs/servers/x11/xorg/imake-setup-hook.sh
+++ b/pkgs/servers/x11/xorg/imake-setup-hook.sh
@@ -14,6 +14,6 @@ imakeConfigurePhase() {
     runHook postConfigure
 }
 
-if [ -z "${dontUseImakeConfigure-}" -a -z "$configurePhase" ]; then
+if [ -z "${dontUseImakeConfigure-}" -a -z "${configurePhase-}" ]; then
     configurePhase=imakeConfigurePhase
 fi