From 75ad374eb9d8a5cff65a281aa8ef29b7aaa0904f Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 05 Mar 2014 12:27:43 -0500 Subject: Merge branch 'feature/opkbuild-helper-script'. --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 209256e..50c18f1 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,32 @@ AC_ARG_ENABLE( ] ) +AC_ARG_WITH( + [opkbuild-helpers], + [AS_HELP_STRING([--with-opkbuild-helpers=PATH], + [specify directory to install opkbuild helper script])], + [ + opt='opkbuild-helpers' + case "${withval}" in + 'yes'|'') + AC_MSG_ERROR( + [--with-${opt} requires an argument]) + ;; + 'no') + AC_MSG_ERROR([${opt} is required]) + ;; + *) + helperdir="${withval}" + ;; + esac + ], + [ + helperdir='$(datadir)/opkbuild/helpers' + ] +) + AC_SUBST([SH]) AC_SUBST([multiarch_libdir]) +AC_SUBST([helperdir]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT() -- cgit v0.9.1