Fixing the qt4 setup hook, where "[ -n $blabla ]" always evaluated to true.
svn path=/nixpkgs/trunk/; revision=15808
This commit is contained in:
parent
07caf9a9bd
commit
d7e96a4e58
|
@ -1,6 +1,6 @@
|
|||
export QTDIR=@out@
|
||||
|
||||
if [ -n $qt4BadIncludes ]; then
|
||||
if [ -n "$qt4BadIncludes" ]; then
|
||||
for d in @out@/include/*; do
|
||||
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$d";
|
||||
done;
|
||||
|
|
Loading…
Reference in New Issue