diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-08-18 22:09:53 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-08-18 22:09:53 +0000 |
commit | 7e0378e6ad0e42acd2665374d707bdf5ef02efb9 (patch) | |
tree | 2342129b4de2c5e88a8c86213ccb60db25fc237f /gnu/usr.bin/texinfo/po | |
parent | aa18b6a4c5b724504554d43def3cfe6f22c68e55 (diff) |
Add some missing $(srcdir)s. Makes texinfo a little bit closer
to work on readonly /usr/src systems.
Diffstat (limited to 'gnu/usr.bin/texinfo/po')
-rw-r--r-- | gnu/usr.bin/texinfo/po/Makefile.in.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/texinfo/po/Makefile.in.in b/gnu/usr.bin/texinfo/po/Makefile.in.in index 0249cd08ee2..6fd1820110c 100644 --- a/gnu/usr.bin/texinfo/po/Makefile.in.in +++ b/gnu/usr.bin/texinfo/po/Makefile.in.in @@ -91,7 +91,7 @@ all: all-@USE_NLS@ all-yes: cat-id-tbl.c $(CATALOGS) all-no: -$(PACKAGE).pot: $(POTFILES) +$(srcdir)/$(PACKAGE).pot: $(POTFILES) $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ --add-comments --keyword=_ --keyword=N_ \ --files-from=$(srcdir)/POTFILES.in @@ -103,8 +103,8 @@ $(PACKAGE).pot: $(POTFILES) && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot; \ fi -cat-id-tbl.c: stamp-cat-id -stamp-cat-id: $(PACKAGE).pot +$(srcdir)/cat-id-tbl.c: stamp-cat-id +$(srcdir)/stamp-cat-id: $(PACKAGE).pot rm -f cat-id-tbl.tmp sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \ | sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp |