diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2012-08-31 15:47:32 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-09-11 09:35:28 +0200 |
commit | 99d911701338249298ca6ae8c412acb3fb118c7f (patch) | |
tree | f8e4798c021b233978e96e6afee23242a64de39b /configure | |
parent | 78461c7ab214b6a29aa51f43e09b7af5d3cb3cb6 (diff) | |
download | qtbase-99d911701338249298ca6ae8c412acb3fb118c7f.tar.gz |
call syncqt unconditionally in configure
... provided perl is available.
configure.exe already does that, and there is no reason not to.
Change-Id: If398864697fcfbe4545248cec33e70a1ec4a29a3
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -3540,12 +3540,7 @@ fi # symlink includes if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then - SYNCQT_OPTS= - if [ "$OPT_SHADOW" = "yes" ]; then - "$outpath/bin/syncqt" $SYNCQT_OPTS "$relpath" || exit 1 - elif [ "$CFG_DEV" = "yes" ] || [ ! -d $relpath/include ] || [ -d $relpath/.git ]; then - "$outpath/bin/syncqt" $SYNCQT_OPTS || exit 1 - fi + "$outpath/bin/syncqt" "$relpath" || exit 1 fi # $1: input variable name (awk regexp) |