diff options
author | Jim Meyering <jim@meyering.net> | 1996-07-09 23:23:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-07-09 23:23:33 +0000 |
commit | 824081f6608ab09f0af8233cf65de7b9f150b30f (patch) | |
tree | 50ab822733a5b35ebe2fa1f534b7a275225def09 | |
parent | 417bda1b99d9c37222ee2e4e2cfbd9823190477e (diff) | |
download | coreutils-824081f6608ab09f0af8233cf65de7b9f150b30f.tar.xz |
(install-data): Don't install NLS files when they're not requested.
From Ulrich Drepper. Reported by Kjetil Torgrim Homme <kjetilho@ifi.uio.no>.
-rw-r--r-- | po/Makefile.in.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 050a9ec46..a12eaa753 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -120,7 +120,9 @@ stamp-cat-id: $(PACKAGE).pot install: install-exec install-data install-exec: -install-data: all +install-data: install-data-@USE_NLS@ +install-data-no: all +install-data-yes: all if test -r $(MKINSTALLDIRS); then \ $(MKINSTALLDIRS) $(datadir); \ else \ |