1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-25 08:35:53 +02:00

use $@, instead of literal `POTFILES'

This commit is contained in:
Jim Meyering
1997-02-02 16:05:43 +00:00
parent d262a3cc82
commit 09e2cc2fdf

View File

@@ -241,12 +241,12 @@ POTFILES: POTFILES.in
else \
posrcprefix="../"; \
fi; \
rm -f POTFILES-t POTFILES \
rm -f $@-t $@ \
&& sed -e '/^#/d' -e '/^[ ]*$$/d' \
-e "s@.*@ $$posrcprefix& \\\\@" \
-e '$$s/\(.*\) \\/\1/' < $(srcdir)/POTFILES.in > POTFILES-t \
&& chmod a-w POTFILES-t \
&& mv POTFILES-t POTFILES )
-e '$$s/\(.*\) \\/\1/' < $(srcdir)/$@.in > $@-t \
&& chmod a-w $@-t \
&& mv $@-t $@ )
Makefile: Makefile.in.in ../config.status POTFILES
cd .. \