aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1993-03-17 18:32:04 +0000
committerRoland McGrath <roland@gnu.org>1993-03-17 18:32:04 +0000
commitd42a69dd8390628766127fc9592b1ef9c5da9ddf (patch)
treeb136bf75f562277ba4b965fc9c6427749271249f
parent009d15de1bd3df19c6ed7f12199d6ba530c1add9 (diff)
downloadglibc-d42a69dd8390628766127fc9592b1ef9c5da9ddf.tar
glibc-d42a69dd8390628766127fc9592b1ef9c5da9ddf.tar.gz
glibc-d42a69dd8390628766127fc9592b1ef9c5da9ddf.tar.bz2
glibc-d42a69dd8390628766127fc9592b1ef9c5da9ddf.zip
Formerly m68k/Makefile.~5~
-rw-r--r--sysdeps/m68k/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/m68k/Makefile b/sysdeps/m68k/Makefile
index 886744365c..3158e3b104 100644
--- a/sysdeps/m68k/Makefile
+++ b/sysdeps/m68k/Makefile
@@ -7,5 +7,5 @@ crypt := crypt.sun3 # Use crypt/crypt.sun3.S.
# Disgusting magic to get `#'s into the asm code.
define compile-command.S
$(CC) $(CPPFLAGS) -E $< \
-| sed 's/(@@@Hash-Here@@@)/#/g' | $(AS) $(ASFLAGS) -o $@
+| sed -e '/^#/d' -e 's/(@@@Hash-Here@@@)/#/g' | $(AS) $(ASFLAGS) -o $@
endef