aboutsummaryrefslogtreecommitdiff
path: root/src/context.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-12-21 22:24:48 +0000
committerMike Buland <eichlan@xagasoft.com>2009-12-21 22:24:48 +0000
commit97c0fcbbef19012f825cba0fc3f16037322ce84c (patch)
tree4169f36e050f4df84280c948148f8f054c37091e /src/context.cpp
parent8ebc3f17961ef6a0cf708cc6bdca948d77817ee0 (diff)
downloadbuild-97c0fcbbef19012f825cba0fc3f16037322ce84c.tar.gz
build-97c0fcbbef19012f825cba0fc3f16037322ce84c.tar.bz2
build-97c0fcbbef19012f825cba0fc3f16037322ce84c.tar.xz
build-97c0fcbbef19012f825cba0fc3f16037322ce84c.zip
We're getting closer and closer, qt4 is more configurable and gets QT flags
for you for CXXFLAGS and LDFLAGS, added a bunch more stuff and fixed a strange function input bug.
Diffstat (limited to '')
-rw-r--r--src/context.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/context.cpp b/src/context.cpp
index bc48def..e9330e5 100644
--- a/src/context.cpp
+++ b/src/context.cpp
@@ -232,6 +232,8 @@ Bu::FString Context::expand( const Bu::FString &sInS )
232 char buf[4096]; 232 char buf[4096];
233 sBuf.append( buf, p.read( buf, 4096 ) ); 233 sBuf.append( buf, p.read( buf, 4096 ) );
234 } 234 }
235 sBuf = sBuf.replace("\n", " ").replace("\r", " ");
236 sBuf.trimBack(' ');
235 sRet.append( sBuf ); 237 sRet.append( sBuf );
236 } catch(...) 238 } catch(...)
237 { 239 {