aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-05-02 15:13:37 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-05-02 15:14:36 +0200
commitbf75434c5f05c4b84f64d9e346756e6c99e971b0 (patch)
tree7b71ac3f8dc2051b563feec09dff7d1da1767332 /configure.ac
parent197b9ce13ea3a3d09ff89c8d9a16a14f72aca691 (diff)
downloadlibpam-x2go-bf75434c5f05c4b84f64d9e346756e6c99e971b0.tar.gz
libpam-x2go-bf75434c5f05c4b84f64d9e346756e6c99e971b0.tar.bz2
libpam-x2go-bf75434c5f05c4b84f64d9e346756e6c99e971b0.zip
Makefile.am: Drop dist-hook. Makes localinstall configure option obsolete, so also removed.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac16
1 files changed, 1 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac
index ba57d72..a8bb2d2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,24 +28,10 @@ fi
PKG_CHECK_MODULES(LIBSSH, libssh)
###########################
-# Local Install
-###########################
-
-with_localinstall="no"
-AC_ARG_ENABLE(localinstall, AS_HELP_STRING([--enable-localinstall],
- [install all files locally (for distcheck)]),
- with_localinstall=$enableval,
- with_localinstall=no)
-
-###########################
# PAM Module dir
###########################
-if test "x$with_localinstall" = "xyes"; then
- PAMMODULEDIR="${libdir}/security/"
-else
- PAMMODULEDIR="/lib/security"
-fi
+PAMMODULEDIR="/lib/security"
AC_SUBST(PAMMODULEDIR)
###########################