STR#2028 new fix: replace ' by \" for the $compile var wrapping in fltk-config.in.
Tested successfully on _both_ bash and sh shells, on Mac OS X 10.5,linux fedora 4,latest cygwin/mingw. Should also works under IRIX sh, please report feedback on other non bashed based unix platforms. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6177 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
bfbfe8a7b2
commit
d436a13198
@ -246,16 +246,16 @@ fi
|
||||
if test -n "$compile"; then
|
||||
case "$compile" in
|
||||
*.cxx)
|
||||
prog="`basename '$compile' .cxx`"
|
||||
prog="`basename \"$compile\" .cxx`"
|
||||
;;
|
||||
*.cpp)
|
||||
prog="`basename '$compile' .cpp`"
|
||||
prog="`basename \"$compile\" .cpp`"
|
||||
;;
|
||||
*.cc)
|
||||
prog="`basename '$compile' .cc`"
|
||||
prog="`basename \"$compile\" .cc`"
|
||||
;;
|
||||
*.C)
|
||||
prog="`basename '$compile' .C`"
|
||||
prog="`basename \"$compile\" .C`"
|
||||
;;
|
||||
*)
|
||||
echo "ERROR: Unknown/bad C++ source file extension on \"$compile\"!"
|
||||
|
Loading…
x
Reference in New Issue
Block a user