diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/chroot-tools/Makefile | 2 | ||||
-rw-r--r-- | src/lib/Makefile | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/chroot-tools/Makefile b/src/chroot-tools/Makefile index db1cdf5..b42d28d 100644 --- a/src/chroot-tools/Makefile +++ b/src/chroot-tools/Makefile @@ -6,6 +6,8 @@ no-progs = $(libexecs) # These are the shell libraries we will use libs = makechrootpkg.sh $(wildcard hooks-*.sh) +pots = $(libexecs) $(libs) + pkglibexecdir = $(libexecdir)/libretools/chroot clean_files = makechrootpkg.sh.ugly* *~ include ../../common.mk diff --git a/src/lib/Makefile b/src/lib/Makefile index fd6d31d..4f24ad3 100644 --- a/src/lib/Makefile +++ b/src/lib/Makefile @@ -3,6 +3,8 @@ libexecs = $(filter-out librelib,$(wildcard libre*)) # include common.sh in libs explicitly, because it might not exist yet # when the wildcard is performed libs = $(sort $(wildcard *.sh) common.sh) + +pots = $(libs) include ../../common.mk # Build ############################################################## @@ -19,8 +21,6 @@ common.sh: %: %.in %.top Makefile # Translate ########################################################## -pot: libreblacklist.pot common.sh.pot librelib.pot - libreblacklist.pot: libreblacklist { \ sed -n '/^# Usage:/,/()/{ /^#/ { =; p; } }' $< | \ |