build: Move getconf.sh to scripts - sbase - suckless unix tools | |
git clone git://git.suckless.org/sbase | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 58ec1f628525b538cf52bf8f1bda1068dd0929f2 | |
parent ba2fc773f34789327c709ad865547e86eb3817d3 | |
Author: Roberto E. Vargas Caballero <[email protected]> | |
Date: Tue, 26 Sep 2023 20:03:53 +0200 | |
build: Move getconf.sh to scripts | |
The scripts directory is meant to contain all the scripts needed | |
in the build. | |
Diffstat: | |
M Makefile | 4 ++-- | |
R getconf.sh -> scripts/getconf.sh | 0 | |
2 files changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -207,8 +207,8 @@ libutil.a: $(LIBUTILOBJ) | |
getconf.o: getconf.h | |
-getconf.h: getconf.sh | |
- ./getconf.sh > $@ | |
+getconf.h: | |
+ scripts/getconf.sh > $@ | |
install: all | |
mkdir -p $(DESTDIR)$(PREFIX)/bin | |
diff --git a/getconf.sh b/scripts/getconf.sh |