summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-22 16:25:57 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-22 16:31:13 (EDT)
commit737bee44fbc2362c8ea729b65a2374e64438bab2 (patch)
treeda0e352a54b9e241937cbaecef63f95b55020520
parentbaf7e22edb788cf92642fc34892268368823ebaa (diff)
configure.ac: Drop --with-library-path
-rw-r--r--configure.ac26
1 files changed, 1 insertions, 25 deletions
diff --git a/configure.ac b/configure.ac
index 882f920..df0982e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -144,30 +144,6 @@ AC_ARG_ENABLE(
)
AC_ARG_WITH(
- [library-path],
- [AS_HELP_STRING([--with-library-path=PATH],
- [colon-separated list of library directories])],
- [
- opt='library-path'
- case "${withval}" in
- 'yes'|'')
- AC_MSG_ERROR(
- [--with-${opt} requires an argument])
- ;;
- 'no')
- AC_MSG_ERROR([${opt} is required])
- ;;
- *)
- library_path="${withval}"
- ;;
- esac
- ],
- [
- library_path='$(libdir)'
- ]
-)
-
-AC_ARG_WITH(
[opkbuild-helpers],
[AS_HELP_STRING([--with-opkbuild-helpers=PATH],
[specify directory to install opkbuild helper script])],
@@ -194,8 +170,8 @@ AC_ARG_WITH(
AC_SUBST([SH])
AC_SUBST([READELF])
AC_SUBST([OPKG])
+AC_SUBST([LDCONFIG])
AC_SUBST([multiarch_libdir])
-AC_SUBST([library_path])
AC_SUBST([helperdir])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT()