diff options
author | Matt Wilson <msw@redhat.com> | 2000-03-08 19:33:44 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-03-08 19:33:44 +0000 |
commit | 49545236314a462ac1571bc83fe319eb80fb1ac1 (patch) | |
tree | b86e13d4608bcdb88a63b470a665a9298b5648be /loader/Makefile | |
parent | adb44b92b55951dd3f84b3b54148503555b74c95 (diff) | |
download | anaconda-49545236314a462ac1571bc83fe319eb80fb1ac1.tar.gz anaconda-49545236314a462ac1571bc83fe319eb80fb1ac1.tar.xz anaconda-49545236314a462ac1571bc83fe319eb80fb1ac1.zip |
only include the .tr files we're actually going to use
Diffstat (limited to 'loader/Makefile')
-rw-r--r-- | loader/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/Makefile b/loader/Makefile index 85054f556..ba3b462c7 100644 --- a/loader/Makefile +++ b/loader/Makefile @@ -75,11 +75,12 @@ LANGS = $(shell awk '{ print $$2 }' ../lang-table | grep -v '^en$$') endif TR = $(patsubst %,tr/%.tr,$(LANGS)) +TRFILES = $(patsubst %,%.tr,$(LANGS)) all: dirs $(BINS) loader.tr loader.tr: $(TR) - (cd tr; ls *.tr | cpio --quiet -Hcrc -o | gzip -9) > $@ + (cd tr; ls $(TRFILES) | cpio --quiet -Hcrc -o | gzip -9) > $@ loader.po: *.c xgettext --default-domain=loader --add-comments \ |