diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-01 17:58:06 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-02 13:57:55 (GMT) |
commit | a62177874d961e0884e74ba7c7c8899fdb79fb09 (patch) | |
tree | f1ab90a0791b1fc8aa0c769f994cabf88b848972 /configure | |
parent | 298aee0577a45dadf8e30b5bea05224f9e3aa52d (diff) | |
download | Qt-a62177874d961e0884e74ba7c7c8899fdb79fb09.zip Qt-a62177874d961e0884e74ba7c7c8899fdb79fb09.tar.gz Qt-a62177874d961e0884e74ba7c7c8899fdb79fb09.tar.bz2 |
Always run syncqt if using a Git checkout.
Reviewed-by: Olivier Goffart
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4322,7 +4322,7 @@ if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then [ "$CFG_DEV" = "yes" ] && SYNCQT_OPTS="$SYNCQT_OPTS -check-includes" if [ "$OPT_SHADOW" = "yes" ]; then "$outpath/bin/syncqt" $SYNCQT_OPTS - elif [ "$CFG_DEV" = "yes" ] || [ ! -d $relpath/include ]; then + elif [ "$CFG_DEV" = "yes" ] || [ ! -d $relpath/include ] || [ -d $relpath/.git ]; then QTDIR="$relpath" perl "$outpath/bin/syncqt" $SYNCQT_OPTS fi fi |