diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-02 15:13:37 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-02 15:14:36 +0200 |
commit | bf75434c5f05c4b84f64d9e346756e6c99e971b0 (patch) | |
tree | 7b71ac3f8dc2051b563feec09dff7d1da1767332 | |
parent | 197b9ce13ea3a3d09ff89c8d9a16a14f72aca691 (diff) | |
download | libpam-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.
-rw-r--r-- | Makefile.am | 29 | ||||
-rw-r--r-- | configure.ac | 16 |
2 files changed, 1 insertions, 44 deletions
diff --git a/Makefile.am b/Makefile.am index 7d71690..0be6fd9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,36 +1,7 @@ - SUBDIRS = src if HAVE_GTEST SUBDIRS += tests endif -DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall - -dist-hook: - @if test -d "$(top_srcdir)/.bzr"; \ - then \ - echo Creating ChangeLog && \ - ( cd "$(top_srcdir)" && \ - echo '# Generated by Makefile. Do not edit.'; echo; \ - $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \ - && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ - || (rm -f ChangeLog.tmp; \ - echo Failed to generate ChangeLog >&2 ); \ - else \ - echo Failed to generate ChangeLog: not a branch >&2; \ - fi - @if test -d "$(top_srcdir)/.bzr"; \ - then \ - echo Creating AUTHORS && \ - ( cd "$(top_srcdir)" && \ - echo '# Generated by Makefile. Do not edit.'; echo; \ - $(top_srcdir)/missing --run bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \ - && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \ - || (rm -f AUTHORS.tmp; \ - echo Failed to generate AUTHORS >&2 ); \ - else \ - echo Failed to generate AUTHORS: not a branch >&2; \ - fi - include $(top_srcdir)/Makefile.am.coverage 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) ########################### |