From 6d6a8de6153c2d711678de3de7e7f7238d7c7ff0 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Tue, 10 Jul 2018 02:52:17 -0500 Subject: [PATCH] Fix the makefile so the build actually happens. --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 213c97f..b7b9a14 100755 --- a/Makefile +++ b/Makefile @@ -1,13 +1,12 @@ #!/usr/bin/make -f -SUBDIRS := lubuntu/po/ +#SUBDIRS := all: install install: - for i in $(SUBDIRS); do \ - make -C $$i; \ - find $$i/../ -type f -iname "*.in" | xargs rm -f - done + make -C lubuntu/po/; \ + find lubuntu/ -type f -iname "*.in" | xargs rm -f + chmod +x lubuntu/*.desktop # vim:ts=4