diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-06-12 18:49:24 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-06-15 09:14:48 (GMT) |
commit | 98899a4122565090640672d9aae2c37315f186ce (patch) | |
tree | de82134a9eba978a2090568e0b472c355fd3d621 /configure | |
parent | b3743d1df735d4b46f45e034818bbfe45bf8d22e (diff) | |
download | Qt-98899a4122565090640672d9aae2c37315f186ce.zip Qt-98899a4122565090640672d9aae2c37315f186ce.tar.gz Qt-98899a4122565090640672d9aae2c37315f186ce.tar.bz2 |
fix qm build
so "qmake -r && make" worked fine ... but configure does not simply run
"qmake -r".
also, now we have to build lrelease even when we don't build the other
tools.
Reviewed-by: Jason McDonald
Reviewed-by: mariusSO
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7050,6 +7050,9 @@ FNR == 1 { if ( \$3 == "moc" || \$3 ~ /^Qt/ ) { target_file = first matched_target = 1 + } else if ( \$3 == "lrelease" || \$3 == "qm_phony_target" ) { + target_file = second + matched_target = 1 } } @@ -7134,6 +7137,7 @@ for part in $CFG_BUILD_PARTS; do case "$part" in tools) PART_ROOTS="$PART_ROOTS tools" ;; libs) PART_ROOTS="$PART_ROOTS src" ;; + translations) PART_ROOTS="$PART_ROOTS tools/linguist/lrelease translations" ;; examples) PART_ROOTS="$PART_ROOTS examples demos" ;; *) ;; esac |