You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/07/12 18:27:43 UTC

svn commit: r555685 - /incubator/stdcxx/trunk/etc/config/makefile.rules

Author: sebor
Date: Thu Jul 12 09:27:43 2007
New Revision: 555685

URL: http://svn.apache.org/viewvc?view=rev&rev=555685
Log:
2007-07-12  Martin Sebor  <se...@roguewave.com>

	* makefile.rules (makedep): Quoted the definition of the shell variable
	depflags in case it contains spaces (as it does when using acc.config)
	to correct a regression introduced in r555061 made to address issue
	STDCXX-481.

Modified:
    incubator/stdcxx/trunk/etc/config/makefile.rules

Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?view=diff&rev=555685&r1=555684&r2=555685
==============================================================================
--- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
+++ incubator/stdcxx/trunk/etc/config/makefile.rules Thu Jul 12 09:27:43 2007
@@ -186,7 +186,7 @@
                    s:$$RWTSRCDIR:$$""(TOPDIR)/\.\./rwtest:gp;                \
                    s:$(TOPDIR):$$""(TOPDIR):gp;                              \
                    s:$(BUILDDIR):$$""(BUILDDIR):gp" ;                        \
-	   depflags=$(value DEPENDFLAGS$(depsuffix));                        \
+	   depflags="$(value DEPENDFLAGS$(depsuffix))";                      \
            echo "$(CXX) $$depflags $(CPPFLAGS) $(CXXFLAGS) $<";              \
            $(CXX) $$depflags $(CPPFLAGS) $(CXXFLAGS) $<                      \
                | sed "$$sedexp1" | tr "@" "\n" | sed -n "$$sedexp2" >$@ ;    \