This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: make clean doesn't in current cvs


This is a patch to fix the broken DO_X target in the top-level
Makefile.in in current CVS.

The currently backslashed single-quotes inside the backquotes should
not have backslashes.

With this patch, "make tags" (one of the targets covered by DO_X) now
works correctly again on sparc-sun-solaris2.6.

2001-03-22  Colin Howell  <chowell@redhat.com>

        * Makefile.in (DO_X): Do not backslash single-quotes in backquotes.

Index: gcc/Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/Makefile.in,v
retrieving revision 1.77
diff -c -3 -p -r1.77 Makefile.in
*** Makefile.in	2001/03/21 19:34:08	1.77
--- Makefile.in	2001/03/23 04:17:47
*************** $(DO_X):
*** 967,973 ****
  	    if (cd ./$$i; \
  	        $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
  			"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
! 	                "`echo \"RANLIB=$${RANLIB}\" | sed -e \'s/.*=$$/XFOO=/\'`" \
  			"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
  			$${target}); \
  	    then true; else exit 1; fi; \
--- 967,973 ----
  	    if (cd ./$$i; \
  	        $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
  			"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
! 	                "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
  			"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
  			$${target}); \
  	    then true; else exit 1; fi; \

-- 
Colin Douglas Howell            E-mail:  chowell@redhat.com
Support Engineer                Support line:  (408) 542-9601
Red Hat, Inc.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]