aboutsummaryrefslogtreecommitdiff
path: root/libstdc++
diff options
context:
space:
mode:
authorPhilipp Thomas <pthomas@suse.de>2000-10-08 03:09:38 +0000
committerPhilipp Thomas <pthomas@gcc.gnu.org>2000-10-08 03:09:38 +0000
commit1f2758f7a4d22691f18b96e2fc26f27c5d8fe16d (patch)
tree36c61d8a32567cfacd57882c8e012a61819f823a /libstdc++
parent7e1cb6b6132835b72fc3af81da033b317b4b06ca (diff)
downloadgcc-1f2758f7a4d22691f18b96e2fc26f27c5d8fe16d.zip
gcc-1f2758f7a4d22691f18b96e2fc26f27c5d8fe16d.tar.gz
gcc-1f2758f7a4d22691f18b96e2fc26f27c5d8fe16d.tar.bz2
Makefile.in (piclist): Fix sed command to also accept numbers in filenames.
2000-10-08 Philipp Thomas <pthomas@suse.de> * Makefile.in (piclist): Fix sed command to also accept numbers in filenames. From-SVN: r36785
Diffstat (limited to 'libstdc++')
-rw-r--r--libstdc++/ChangeLog5
-rw-r--r--libstdc++/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog
index 9fa2507..26bfd9e 100644
--- a/libstdc++/ChangeLog
+++ b/libstdc++/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-08 Philipp Thomas <pthomas@suse.de>
+
+ * Makefile.in (piclist): Fix sed command to also accept
+ numbers in filenames.
+
2000-10-07 Richard Henderson <rth@cygnus.com>
* del_op.cc, del_opnt.cc, del_opv.cc, del_opvnt.cc: New files.
diff --git a/libstdc++/Makefile.in b/libstdc++/Makefile.in
index 3db3b73..fa6fe00 100644
--- a/libstdc++/Makefile.in
+++ b/libstdc++/Makefile.in
@@ -89,7 +89,7 @@ piclist: stdlist
-rm -f tlist
cp stdlist tlist
if [ x"$(PICFLAG)" != x ]; then \
- sed 's,\([A-Za-z_]*\.o\),pic/\1,g' tlist > tlist2 ; \
+ sed 's,\([A-Za-z_0-9]*\.o\),pic/\1,g' tlist > tlist2 ; \
mv tlist2 tlist ; \
else true ; fi
mv tlist piclist