diff options
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/po/Makefile b/po/Makefile index c321d661..fb81b9ac 100644 --- a/po/Makefile +++ b/po/Makefile @@ -10,16 +10,12 @@ NLSPACKAGE = initscripts CATALOGS = $(shell ls *.po) FMTCATALOGS = $(patsubst %.po,%.mo,$(CATALOGS)) -POTFILES = /etc/ppp/ip* /etc/rc.d/init.d/* \ - $(shell ls /etc/sysconfig/network-scripts/* | grep -v ifcfg-) \ - /sbin/service /usr/sbin/sys-unconfig +POTFILES = ../ppp/ip* $(shell ls ../sysconfig/network-scripts/* | grep -v ifcfg-) \ + ../service ../sys-unconfig ../systemd/fedora-* ../rc.d/init.d/* all: $(NLSPACKAGE).pot $(FMTCATALOGS) -$(NLSPACKAGE).pot: - @echo "Please don't run 'make initscripts.pot unless you have a *FULL*, current install." - -new-pot-file-i-really-mean-it: $(POTFILES) +$(NLSPACKAGE).pot: $(POTFILES) ./xgettext_sh.py $(POTFILES) > $(NLSPACKAGE).po if cmp -s $(NLSPACKAGE).po $(NLSPACKAGE).pot; then \ rm -f $(NLSPACKAGE).po; \ |