Fixing the qt4 setup hook, where "[ -n $blabla ]" always evaluated to true.

svn path=/nixpkgs/trunk/; revision=15808
This commit is contained in:
Lluís Batlle i Rossell 2009-05-31 08:35:00 +00:00
parent 07caf9a9bd
commit d7e96a4e58
1 changed files with 1 additions and 1 deletions

View File

@ -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;