From: Ian Lance Taylor Date: Fri, 3 Nov 1995 03:52:08 +0000 (+0000) Subject: * Makefile.in (DO_X): Split rule to decrease command line length X-Git-Tag: gdb-4_18~10281 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec7a8792d92ebfa360e6ce4d1edf1065634e4fc5;p=platform%2Fupstream%2Fbinutils.git * Makefile.in (DO_X): Split rule to decrease command line length for systems with small ARG_MAX values. From phdm@info.ucl.ac.be (Philippe De Muyter). --- diff --git a/ChangeLog b/ChangeLog index e859b2e..bc2d94d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Nov 2 13:24:56 1995 Ian Lance Taylor + + * Makefile.in (DO_X): Split rule to decrease command line length + for systems with small ARG_MAX values. From phdm@info.ucl.ac.be + (Philippe De Muyter). + Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com) * Makefile.in (all-patch): depend on all-libiberty. diff --git a/Makefile.in b/Makefile.in index 2489f1e..7f1676a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -659,7 +659,10 @@ $(DO_X): $${target}); \ then true; else exit 1; fi; \ else true; fi; \ - done;\ + done + @target=`echo $@ | sed -e 's/^do-//'`; \ + r=`pwd`; export r; \ + srcroot=`cd $(srcdir); pwd`; export srcroot; \ for i in $(TARGET_CONFIGDIRS) -dummy-; do \ if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \ for flag in $(EXTRA_TARGET_FLAGS); do \