From 1f2758f7a4d22691f18b96e2fc26f27c5d8fe16d Mon Sep 17 00:00:00 2001 From: Philipp Thomas Date: Sun, 8 Oct 2000 03:09:38 +0000 Subject: Makefile.in (piclist): Fix sed command to also accept numbers in filenames. 2000-10-08 Philipp Thomas * Makefile.in (piclist): Fix sed command to also accept numbers in filenames. From-SVN: r36785 --- libstdc++/ChangeLog | 5 +++++ libstdc++/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'libstdc++') 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 + + * Makefile.in (piclist): Fix sed command to also accept + numbers in filenames. + 2000-10-07 Richard Henderson * 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 -- cgit v1.1