about summary refs log tree commit diff
path: root/csu
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-05-13 12:10:50 +0000
committerUlrich Drepper <drepper@redhat.com>1998-05-13 12:10:50 +0000
commit3cb0cda8a1eb5aa13140f68d8a3c11b21fdeb986 (patch)
tree3809c20c5a7debd62cc29d4bb8d0e9e61526e335 /csu
parenta4b96a06981a8ee9b66d893737f168461eb8cab0 (diff)
downloadglibc-3cb0cda8a1eb5aa13140f68d8a3c11b21fdeb986.tar.gz
glibc-3cb0cda8a1eb5aa13140f68d8a3c11b21fdeb986.tar.xz
glibc-3cb0cda8a1eb5aa13140f68d8a3c11b21fdeb986.zip
Update.
1998-05-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* iconvdata/8bit-gap.c (BODY): Don't fall off the end of the gap
	table.

1998-05-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* iconvdata/gen-8bit.sh: New file.
	* iconvdata/gen-8bit-gap.sh: New file.
	* iconvdata/gen-8bit-gap-1.sh: New file.
	* iconvdata/Makefile (generate-8bit-table): Use shell script
	instead of writing the commands directly.
	(generate-8bit-gap-table): Likewise.
	($(objpfx)iso8859-7jp.h): Likewise.
	(generated headers): Depend on shell script instead of Makefile.
	(before-compile): Add $(perl-generated-headers) only if perl is
	available.
	(headers): Depend on $(perl-generated-headers) only if perl is
	available.
	(sed-generated-headers): Remove iso8859-7jp.h.

1998-05-11  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* csu/Makefile ($(objpfx)abi-tag.h): Double $ in command.  Clean up.
	(/): Removed.
Diffstat (limited to 'csu')
-rw-r--r--csu/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/csu/Makefile b/csu/Makefile
index 6d804f46aa..fcbaaf0ac0 100644
--- a/csu/Makefile
+++ b/csu/Makefile
@@ -149,15 +149,16 @@ $(addprefix $(objpfx),$(filter-out $(start-installed-name),$(csu-dummies))):
 	rm -f $(@:.o=.c)
 
 # These headers are used by the startup code.
-/ := $$/# bite me.
 $(objpfx)abi-tag.h: $(..)abi-tags
 	$(make-target-directory)
 	rm -f $@.new
-	sed 's/#.*$//;/^[ 	]*$/d' $< | while read conf tag; do \
+	sed -e 's/#.*$$//' -e '/^[ 	]*$$/d' $< | \
+	while read conf tag; do \
 	  test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
 		     : "$$conf"` != 0 || continue; \
-	  echo "$$tag" | sed > $@.new \
-	       's/[^0-9xXa-fA-F]/ /g;s/ *$//;s/ /,/g;s/^ */#define ABI_TAG /';\
+	  echo "$$tag" | \
+	  sed -e 's/[^0-9xXa-fA-F]/ /g' -e 's/ *$$//' \
+	      -e 's/ /,/g' -e 's/^ */#define ABI_TAG /' > $@.new; \
 	done
 	if test -r $@.new; then mv -f $@.new $@; \
 	else echo >&2 'This configuration not matched in $<'; exit 1; fi