diff options
author | Jim Meyering <jim@meyering.net> | 2001-01-03 09:45:32 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-01-03 09:45:32 +0000 |
commit | 1f13191b6f3719921ecd1f8df9cfa791f95030e6 (patch) | |
tree | 2339d614410ec29f672a79d1b2691540d91ac234 | |
parent | 5aa665a62444788e6ef5d6cfdd723b32bdf8a87e (diff) | |
download | coreutils-1f13191b6f3719921ecd1f8df9cfa791f95030e6.tar.xz |
(install-data-yes): If the package is
fileutils, install LC_TIME as an alias for LC_MESSAGES.
-rw-r--r-- | po/Makefile.in.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 5ba3745b5..fcb6ac357 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -150,6 +150,13 @@ install-data-yes: all true; \ fi; \ fi; \ + if test "$(PACKAGE)" = "fileutils"; then \ + timedir=$$destdir/$$lang/LC_TIME; \ + rm -fr $$timedir; \ + ln -s LC_MESSAGES $$timedir \ + || (mkdir $$timedir && ln $$dir/* $$timedir); \ + echo "installing $$timedir as an alias for $$dir"; \ + fi; \ done if test "$(PACKAGE)" = "gettext"; then \ if test -x "$(MKINSTALLDIRS)"; then \ |