Integrated preprocessor patch - revised
Philipp Thomas
pthomas@suse.de
Mon Sep 11 21:12:00 GMT 2000
* Richard Henderson (rth@cygnus.com) [20000912 05:47]:
> On Tue, Sep 12, 2000 at 04:51:43AM +0200, Philipp Thomas wrote:
> > +stamp-check-pot: $(POTFILES)
> > + touch $@
>
> The use of $@ here isn't portable.
I didn't know that. Fixed thus:
2000-09-12 Philipp Thomas <pthomas@suse.de>
* Makefile.in.in (stamp-check-pot): Don't use $@ in rule.
Index: Makefile.in.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/po/Makefile.in.in,v
retrieving revision 1.5
diff -u -r1.5 Makefile.in.in
--- Makefile.in.in 2000/09/12 02:40:16 1.5
+++ Makefile.in.in 2000/09/12 04:09:57
@@ -83,7 +83,7 @@
all-no:
stamp-check-pot: $(POTFILES)
- touch $@
+ touch stamp-check-pot
$(srcdir)/$(PACKAGE).pot: $(POTFILES)
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
More information about the Gcc-bugs
mailing list