about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5
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/development/libraries/qt-5
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/development/libraries/qt-5')
-rw-r--r--pkgs/development/libraries/qt-5/hooks/qmake-hook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-5/hooks/qmake-hook.sh b/pkgs/development/libraries/qt-5/hooks/qmake-hook.sh
index fc4a0be62826..b785a779c8bc 100644
--- a/pkgs/development/libraries/qt-5/hooks/qmake-hook.sh
+++ b/pkgs/development/libraries/qt-5/hooks/qmake-hook.sh
@@ -31,6 +31,6 @@ qmakeConfigurePhase() {
     runHook postConfigure
 }
 
-if [ -z "${dontUseQmakeConfigure-}" -a -z "$configurePhase" ]; then
+if [ -z "${dontUseQmakeConfigure-}" -a -z "${configurePhase-}" ]; then
     configurePhase=qmakeConfigurePhase
 fi