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:
Fabien Costantini
2008-08-29 09:15:26 +00:00
parent bfbfe8a7b2
commit d436a13198
+4 -4
View File
@@ -246,16 +246,16 @@ fi
if test -n "$compile"; then if test -n "$compile"; then
case "$compile" in case "$compile" in
*.cxx) *.cxx)
prog="`basename '$compile' .cxx`" prog="`basename \"$compile\" .cxx`"
;; ;;
*.cpp) *.cpp)
prog="`basename '$compile' .cpp`" prog="`basename \"$compile\" .cpp`"
;; ;;
*.cc) *.cc)
prog="`basename '$compile' .cc`" prog="`basename \"$compile\" .cc`"
;; ;;
*.C) *.C)
prog="`basename '$compile' .C`" prog="`basename \"$compile\" .C`"
;; ;;
*) *)
echo "ERROR: Unknown/bad C++ source file extension on \"$compile\"!" echo "ERROR: Unknown/bad C++ source file extension on \"$compile\"!"