index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2013-01-20 21:56:57 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-01-28 23:38:46 +1000 |
commit | 89ecf8cabebfd13e50473fba7fb98f65a52b02d8 (patch) | |
tree | bb640857b2eb0d89ac3af16fcd4c02868e2acf22 /configure.ac | |
parent | e3d8197d67336b6e59ee184762271cf64431aca6 (diff) |
-rw-r--r-- | configure.ac | 10 |
diff --git a/configure.ac b/configure.ac index aa3305db..e2024212 100644 --- a/configure.ac +++ b/configure.ac @@ -108,6 +108,12 @@ AC_ARG_WITH(scriptlet-shell, [set the full path to the shell used to run install scriptlets]), [SCRIPTLET_SHELL=$withval], [SCRIPTLET_SHELL=/bin/sh]) +# Help line for ldconfig path +AC_ARG_WITH(ldconfig, + AS_HELP_STRING([--with-ldconfig=path], + [set the full path to ldconfig]), + [LDCONFIG=$withval], [LDCONFIG=/sbin/ldconfig]) + # Help line for using OpenSSL AC_ARG_WITH(openssl, AS_HELP_STRING([--with-openssl], [use OpenSSL crypto implementations instead of internal routines]), @@ -456,6 +462,10 @@ AC_DEFINE_UNQUOTED([DEBUGSUFFIX], "$DEBUGSUFFIX", [The suffix for debugging symb # Set shell used by install scriptlets AC_SUBST(SCRIPTLET_SHELL) AC_DEFINE_UNQUOTED([SCRIPTLET_SHELL], "$SCRIPTLET_SHELL", [The full path of the shell used to run install scriptlets]) +# Set ldconfig path +AC_SUBST(LDCONFIG) +AC_DEFINE_UNQUOTED([LDCONFIG], "$LDCONFIG", [The full path to ldconfig]) + # Configuration files AC_CONFIG_FILES([ |