diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2011-04-10 00:20:46 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2011-04-10 00:20:46 +0000 |
| commit | e8a57991458cfaa536fcc0d8b9a72739a8859da5 (patch) | |
| tree | e87c7b0972ddc75a6993eea192f4e51d124f050f | |
| parent | 0026ca6c003680ffee93847fcf646535ebc713af (diff) | |
| download | build-e8a57991458cfaa536fcc0d8b9a72739a8859da5.tar.gz build-e8a57991458cfaa536fcc0d8b9a72739a8859da5.tar.bz2 build-e8a57991458cfaa536fcc0d8b9a72739a8859da5.tar.xz build-e8a57991458cfaa536fcc0d8b9a72739a8859da5.zip | |
Corrected a minor bug that caused the qt4 exe rule override to fail with a
strange message when only one file was in the project.
Diffstat (limited to '')
| -rw-r--r-- | share/include/qt4.bld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/include/qt4.bld b/share/include/qt4.bld index 6d95ac8..bcb0b32 100644 --- a/share/include/qt4.bld +++ b/share/include/qt4.bld | |||
| @@ -156,7 +156,7 @@ rule "exe" | |||
| 156 | input regex(".*\\.(h|o)"); | 156 | input regex(".*\\.(h|o)"); |
| 157 | profile "build" | 157 | profile "build" |
| 158 | { | 158 | { |
| 159 | INPUT = INPUT.matches("*.o"); | 159 | INPUT = [INPUT].matches("*.o"); |
| 160 | // execute("echo ${INPUT}"); | 160 | // execute("echo ${INPUT}"); |
| 161 | // execute("echo ${MYIN}"); | 161 | // execute("echo ${MYIN}"); |
| 162 | execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); | 162 | execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); |
