From 58ec1f628525b538cf52bf8f1bda1068dd0929f2 Mon Sep 17 00:00:00 2001 From: "Roberto E. Vargas Caballero" Date: Tue, 26 Sep 2023 20:03:53 +0200 Subject: [PATCH] build: Move getconf.sh to scripts The scripts directory is meant to contain all the scripts needed in the build. --- Makefile | 4 ++-- getconf.sh => scripts/getconf.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename getconf.sh => scripts/getconf.sh (100%) 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