commit 58ec1f628525b538cf52bf8f1bda1068dd0929f2
Author: Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Tue Sep 26 20:03:53 2023 +0200
Commit: Roberto E. Vargas Caballero <[email protected]>
CommitDate: Wed Sep 27 07:59:27 2023 +0200
build: Move getconf.sh to scripts
The scripts directory is meant to contain all the scripts needed
in the build.
diff --git a/Makefile b/Makefile
index ac27cfd..307b49d 100644
--- 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
similarity index 100%
rename from getconf.sh
rename to scripts/getconf.sh