From: Alan Modra Date: Thu, 4 Jun 2009 06:57:56 +0000 (+0000) Subject: * dep-in.sed: Don't use \n in replacement part of s command. X-Git-Tag: cgen-1_1-branchpoint~130 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=67a648f17aaf9902891ec61c8025b98612dbbab4;p=external%2Fbinutils.git * dep-in.sed: Don't use \n in replacement part of s command. * Makefile.am (DEP1): LC_ALL for uniq. * Makefile.in: Regenerate. --- diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 0b7e5db..56c478a 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,9 @@ +2009-06-04 Alan Modra + + * dep-in.sed: Don't use \n in replacement part of s command. + * Makefile.am (DEP1): LC_ALL for uniq. + * Makefile.in: Regenerate. + 2009-05-26 Nick Clifton * po/id.po: Updated Indonesian translation. diff --git a/gprof/Makefile.am b/gprof/Makefile.am index a2a4217..12d794b 100644 --- a/gprof/Makefile.am +++ b/gprof/Makefile.am @@ -194,7 +194,8 @@ DEP1: $(gprof_SOURCES) for f in $?; do \ $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \ - sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e '1s/.*: //' -f dep.sed < DEPA | \ + LC_ALL=C sort | LC_ALL=C uniq | \ sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ done rm -f DEPA diff --git a/gprof/Makefile.in b/gprof/Makefile.in index a9dc920..e711f53 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -966,7 +966,8 @@ DEP1: $(gprof_SOURCES) for f in $?; do \ $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \ - sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e '1s/.*: //' -f dep.sed < DEPA | \ + LC_ALL=C sort | LC_ALL=C uniq | \ sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ done rm -f DEPA diff --git a/gprof/dep-in.sed b/gprof/dep-in.sed index 0461228..4823f1e 100644 --- a/gprof/dep-in.sed +++ b/gprof/dep-in.sed @@ -15,5 +15,6 @@ s! \.\./intl/libintl\.h!!g s/ *$// s/ */ /g s/^ */A/ -s/ / \\\nB/g +s/ / \\\ +B/g $s/$/ \\/ diff --git a/ld/ChangeLog b/ld/ChangeLog index 306ed8f..062a0bc 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2009-06-04 Alan Modra + + * dep-in.sed: Don't use \n in replacement part of s command. + * Makefile.am (DEP1): LC_ALL for uniq. + * Makefile.in: Regenerate. + 2009-06-01 H.J. Lu * scripttempl/elf.sc (PLT): Add "*(.iplt)". diff --git a/ld/Makefile.am b/ld/Makefile.am index 7cf1b36..d9045de 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -2022,7 +2022,8 @@ DEP1: $(CFILES) $(GENERATED_CFILES) for f in $?; do \ $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \ - sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e '1s/.*: //' -f dep.sed < DEPA | \ + LC_ALL=C sort | LC_ALL=C uniq | \ sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ done rm -f DEPA diff --git a/ld/Makefile.in b/ld/Makefile.in index 3121f34..aece97b 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -2827,7 +2827,8 @@ DEP1: $(CFILES) $(GENERATED_CFILES) for f in $?; do \ $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \ - sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e '1s/.*: //' -f dep.sed < DEPA | \ + LC_ALL=C sort | LC_ALL=C uniq | \ sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ done rm -f DEPA diff --git a/ld/dep-in.sed b/ld/dep-in.sed index e51593b..4f77b5d 100644 --- a/ld/dep-in.sed +++ b/ld/dep-in.sed @@ -15,5 +15,6 @@ s! \.\./intl/libintl\.h!!g s/ *$// s/ */ /g s/^ */A/ -s/ / \\\nB/g +s/ / \\\ +B/g $s/$/ \\/ diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 21eff9e..7b8e100 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,9 @@ +2009-06-04 Alan Modra + + * dep-in.sed: Don't use \n in replacement part of s command. + * Makefile.am (DEP1): LC_ALL for uniq. + * Makefile.in: Regenerate. + 2009-06-02 Nick Clifton * po/nl.po: Updated Dutch translation. diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am index 665bdd4..d2a76c7 100644 --- a/opcodes/Makefile.am +++ b/opcodes/Makefile.am @@ -654,7 +654,8 @@ DEP1: $(CFILES) for f in $?; do \ $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ sed -n -e '1s/\.o: .*/.lo: \\/p' -e q < DEPA >> DEP2; \ - sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e '1s/.*: //' -f dep.sed < DEPA | \ + LC_ALL=C sort | LC_ALL=C uniq | \ sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ done rm -f DEPA diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index b1eb9d4..9dc3c55 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -1219,7 +1219,8 @@ DEP1: $(CFILES) for f in $?; do \ $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ sed -n -e '1s/\.o: .*/.lo: \\/p' -e q < DEPA >> DEP2; \ - sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e '1s/.*: //' -f dep.sed < DEPA | \ + LC_ALL=C sort | LC_ALL=C uniq | \ sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ done rm -f DEPA diff --git a/opcodes/dep-in.sed b/opcodes/dep-in.sed index df8bc1e..56403a9 100644 --- a/opcodes/dep-in.sed +++ b/opcodes/dep-in.sed @@ -15,5 +15,6 @@ s! \.\./intl/libintl\.h!!g s/ *$// s/ */ /g s/^ */A/ -s/ / \\\nB/g +s/ / \\\ +B/g $s/$/ \\/