diff options
author | Timothy Pearson <[email protected]> | 2012-06-19 20:30:11 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-06-19 20:30:11 -0500 |
commit | 1fcb8ace14d2e3ee6a64c9612199afdc2f752253 (patch) | |
tree | 4f856e3db65a7e9ea4ff48e079a883cd118912f3 | |
parent | c539cec8218123489bb88fca3252e3a7f546de33 (diff) | |
download | tqca-1fcb8ace14d2e3ee6a64c9612199afdc2f752253.tar.gz tqca-1fcb8ace14d2e3ee6a64c9612199afdc2f752253.zip |
Use tqmake
-rwxr-xr-x | configure | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -71,15 +71,15 @@ if [ -z "$QTDIR" ]; then fi fi -if [ ! -x "$QTDIR/bin/qmake" ]; then +if [ ! -x "$QTDIR/bin/tqmake" ]; then if [ "$QC_DEBUG" = "Y" ]; then - echo Warning: qmake not in \$QTDIR/bin/qmake + echo Warning: tqmake not in \$QTDIR/bin/tqmake echo trying to find it in \$PATH fi - qm=`type -p qmake` + qm=`type -p tqmake` if [ -x "$qm" ]; then if [ "$QC_DEBUG" = "Y" ]; then - echo qmake found in $qm + echo tqmake found in $qm fi else echo fail @@ -88,12 +88,12 @@ if [ ! -x "$QTDIR/bin/qmake" ]; then echo or I missdetected \$QTDIR=$QTDIR echo echo Please set \$QTDIR manually and make sure that - echo \$QTDIR/bin/qmake exists. + echo \$QTDIR/bin/tqmake exists. echo exit 1; fi else - qm=$QTDIR/bin/qmake + qm=$QTDIR/bin/tqmake fi gen_files() { @@ -480,7 +480,7 @@ rm -rf .qconftemp if [ -x "./qcextra" ]; then ./qcextra fi -# run qmake +# run tqmake $qm qca.pro if [ "$?" != "0" ]; then echo |