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  <[EMAIL PROTECTED]>

        * 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" >$@ ;    \


Reply via email to