summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2023-06-26 14:45:37 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2023-06-26 16:47:36 (EDT)
commit0bafa47bc5da21caebede1749df3bba825a4a2ac (patch)
tree8ee069b7b17ab221181aed5adedc0ac0af464768
parent2c6e02bf1b6bbd374310f458b184ab1c26717cd6 (diff)
build: Install helpers under libexecdir
-rw-r--r--Makefile.am6
-rw-r--r--configure.ac22
2 files changed, 27 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 9e6d12c..687ac8e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -40,7 +40,11 @@ endif
# * Our release target
PACKAGE_STRING = $(PACKAGE_NAME) $(PACKAGE_VERSION)$(PACKAGE_VERSION_GIT)
-bin_PROGRAMS = opkg-opk mknod
+bin_PROGRAMS = opkg-opk
+
+if WITH_HELPERS
+helpers_PROGRAMS = mknod
+endif
opkg_opk_SOURCES =
opkg_opk_CFLAGS = \
diff --git a/configure.ac b/configure.ac
index 77d9c6a..ad067cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -144,6 +144,28 @@ if test "x${address_sanitization}" = 'xyes'; then
AC_SUBST([ASAN_CFLAGS])
fi
+helpersdir='${libexecdir}/${PACKAGE_TARNAME}'
+AC_ARG_WITH([helpers-dir],
+ [AS_HELP_STRING([--with-helpers-dir=DIR],
+ [helper utilities @<:@LIBEXECDIR/opkg-opk@:>@])],
+ [
+ case "${withval}" in
+ 'yes'|'')
+ AC_MSG_ERROR([--with-helpers-dir requires $(: \
+ )an argument])
+ ;;
+ 'no')
+ helpersdir=''
+ ;;
+ *)
+ helpersdir="\"${withval}\""
+ ;;
+ esac
+ ]
+)
+AM_CONDITIONAL([WITH_HELPERS], [test -n "${helpersdir}"])
+AC_SUBST([helpersdir])
+
AC_CONFIG_FILES([Makefile po/Makefile.in])
AC_CONFIG_HEADERS([config.h])
AC_OUTPUT()