Commit 1f2758f7 by Philipp Thomas Committed by Philipp Thomas

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
parent 7e1cb6b6
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment