From: Richard Kenner Date: Thu, 12 Dec 1996 12:59:19 +0000 (-0500) Subject: (stamp-objlist): Handle first character of object file being a digit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aa56883497eb081219aabcf8187c4d8539010bed;p=gcc.git (stamp-objlist): Handle first character of object file being a digit. From-SVN: r13293 --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ddb4ad59f6e..aa12fc013b3 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -695,7 +695,7 @@ compilations: ${OBJS} # Create a list of the language-independent object files so the language # subdirectories needn't mention their names explicitly. stamp-objlist: $(OBJS) $(BC_OBJS) - echo " $(OBJS) $(BC_OBJS)" | sed -e 's, \([a-z]\), ../\1,g' -e 's/\.o/$(objext)/g' >stamp-objlist + echo " $(OBJS) $(BC_OBJS)" | sed -e 's, \([a-z0-9]\), ../\1,g' -e 's/\.o/$(objext)/g' >stamp-objlist # We call this executable `xgcc' rather than `gcc' # to avoid confusion if the current directory is in the path