comparison tool_dependencies.xml @ 13:9dbfc4fcef0a draft

Fix LDFLAGS. This version is not yet safe against paths containing whitespace.
author jankanis
date Mon, 26 May 2014 05:26:11 -0400
parents 4091cf3b81e5
children 59b33d253163
comparison
equal deleted inserted replaced
12:4091cf3b81e5 13:9dbfc4fcef0a
40 do 40 do
41 CPPFLAGS="$CPPFLAGS -I$p" 41 CPPFLAGS="$CPPFLAGS -I$p"
42 done 42 done
43 for p in $LD_LIBRARY_PATH 43 for p in $LD_LIBRARY_PATH
44 do 44 do
45 LDFLAGS="$LDFLAGS -L$p/lib" 45 LDFLAGS="$LDFLAGS -L$p"
46 done 46 done
47 IFS="$oldifs" 47 IFS="$oldifs"
48 export CPPFLAGS 48 export CPPFLAGS
49 export LDFLAGS 49 export LDFLAGS
50 50