commit 58ec1f628525b538cf52bf8f1bda1068dd0929f2
parent ba2fc773f34789327c709ad865547e86eb3817d3
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
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:
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