From c11e497fc6125be6945ea1bb4949bf24e258bce7 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Fri, 6 May 2011 22:44:14 +0300 Subject: [PATCH] Commented unnecessary qt check --- tools/unix/make_index_of.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/unix/make_index_of.sh b/tools/unix/make_index_of.sh index 22f95ffc38..a914ab2018 100755 --- a/tools/unix/make_index_of.sh +++ b/tools/unix/make_index_of.sh @@ -27,13 +27,13 @@ fi #fi # check if we have QT in PATH -if [ ! `which qmake` ]; then - echo 'You should add your qmake binary into the PATH. This can be done in 2 ways:' - echo ' 1. Set it temporarily by executing: export PATH=/c/qt/your_qt_dir/bin:$PATH' - echo ' 2. Set it permanently by adding export... string above to your ~/.bashrc' - echo 'Hint: for second solution you can type from git bash console: notepad ~/.bashrc' - exit 0 -fi +#if [ ! `which qmake` ]; then +# echo 'You should add your qmake binary into the PATH. This can be done in 2 ways:' +# echo ' 1. Set it temporarily by executing: export PATH=/c/qt/your_qt_dir/bin:$PATH' +# echo ' 2. Set it permanently by adding export... string above to your ~/.bashrc' +# echo 'Hint: for second solution you can type from git bash console: notepad ~/.bashrc' +# exit 0 +#fi # determine script path MY_PATH=`dirname $0`