diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2021-02-28 19:58:23 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2021-02-28 19:58:23 +0000 |
commit | d8fb38a2094a590e09976390a8f5af61e2dacaaf (patch) | |
tree | ca86f3a3b847a7af6535f2d47dc783462d399d47 /po/makefile.inn | |
parent | 7a1331d963675f18ad2a5c47944bfe5a67d6972a (diff) | |
download | lynx-snapshots-d8fb38a2094a590e09976390a8f5af61e2dacaaf.tar.gz |
snapshot of project "lynx", label v2-9-0dev_6e
Diffstat (limited to 'po/makefile.inn')
-rw-r--r-- | po/makefile.inn | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/po/makefile.inn b/po/makefile.inn index 7515cb96..52b253f2 100644 --- a/po/makefile.inn +++ b/po/makefile.inn @@ -1,4 +1,4 @@ -# $LynxId: makefile.inn,v 1.31 2018/02/20 02:13:41 tom Exp $ +# $LynxId: makefile.inn,v 1.32 2021/02/28 15:56:25 tom Exp $ # # Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu> @@ -153,7 +153,7 @@ $(srcdir)/stamp-cat-id: $(PACKAGE).pot rm -f $(srcdir)/cat-id-tbl.c; \ mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \ fi - cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id + ( cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id ) install: install-exec install-data @@ -249,19 +249,19 @@ dist distdir: update-po $(DISTFILES) # GNU msgfmt -C option can also check for X/Open compat. check-po: - cd $(srcdir); \ + ( cd $(srcdir); \ catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ echo "$$lang:"; \ $(MSGFMT) -f -c -v $$lang.po; \ - done + done ) update-po: makefile $(MAKE) $(PACKAGE).pot PATH=`pwd`/../src:$$PATH; \ - cd $(srcdir); \ + ( cd $(srcdir); \ catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ @@ -275,7 +275,7 @@ update-po: makefile rm -f $$lang.po; \ mv $$lang.old.po $$lang.po; \ fi; \ - done + done ) POTFILES: POTFILES.in ( if test 'x$(srcdir)' != 'x.'; then \ @@ -291,9 +291,9 @@ POTFILES: POTFILES.in && mv $@-t $@ ) makefile: makefile.inn ../config.status POTFILES - cd .. \ + ( cd .. \ && CONFIG_FILES=$(subdir)/$@.in:$(subdir)/$@.inn CONFIG_HEADERS= \ - $(SHELL) ./config.status + $(SHELL) ./config.status ) # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |