Skip to content

Commit

Permalink
Patch fixing a typo in Pull Request 307
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Mar 10, 2015
1 parent 5014a10 commit 6913c67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -363,7 +363,7 @@ if test "$f_wizard" = YES; then
echo " QTDIR environment variable not set!"
printf " Checking for Qt..."
for d in /usr/{lib,share,qt}/{qt-4,qt4,qt,qt*,4} /usr; do
for e in qmake gmake-qt4; do
for e in qmake qmake-qt4; do
if test -x "$d/bin/$e"; then
QTDIR=$d
QMAKEEXE=$e
Expand All @@ -372,7 +372,7 @@ if test "$f_wizard" = YES; then
done
done
else
for e in qmake gmake-qt4; do
for e in qmake qmake-qt4; do
if test -x "$QTDIR/bin/$e"; then
if test -e "$QTDIR/bin/$e"; then
printf " Detected Qt via the QTDIR environment variable..."
Expand Down

0 comments on commit 6913c67

Please sign in to comment.