mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 05:52:21 +08:00
* dep-in.sed: Don't use \n in replacement part of s command.
* Makefile.am (DEP1): LC_ALL for uniq. * Makefile.in: Regenerate.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user