Previous changeset 12:4091cf3b81e5 (2014-05-26) Next changeset 14:59b33d253163 (2014-05-26) |
Commit message:
Fix LDFLAGS. This version is not yet safe against paths containing whitespace. |
modified:
tool_dependencies.xml |
b |
diff -r 4091cf3b81e5 -r 9dbfc4fcef0a tool_dependencies.xml --- a/tool_dependencies.xml Mon May 26 05:11:04 2014 -0400 +++ b/tool_dependencies.xml Mon May 26 05:26:11 2014 -0400 |
b |
@@ -42,7 +42,7 @@ done for p in $LD_LIBRARY_PATH do - LDFLAGS="$LDFLAGS -L$p/lib" + LDFLAGS="$LDFLAGS -L$p" done IFS="$oldifs" export CPPFLAGS |