diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2007-11-06 14:46:57 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2007-11-06 14:46:57 +0000 |
commit | a38a8eae25ee1d7adb5a5eafcf1c41e94974ed90 (patch) | |
tree | f4e4ba1dd2aa06bfdba08f88cdd0fd05cac8b5b3 /libpam/Makefile.am | |
parent | 675a1e8f0b0227cae757fdfa197fff944730b516 (diff) | |
download | pam-a38a8eae25ee1d7adb5a5eafcf1c41e94974ed90.tar.gz pam-a38a8eae25ee1d7adb5a5eafcf1c41e94974ed90.tar.bz2 pam-a38a8eae25ee1d7adb5a5eafcf1c41e94974ed90.zip |
Relevant BUGIDs: 1822779
Purpose of commit: bugfix
Commit summary:
---------------
2007-11-06 Thorsten Kukuk <kukuk@thkukuk.de>
* libpam/pam_static_modules.h: Fix name of pam_namespace variable.
2007-10-30 Peter Breitenlohner <peb@mppmu.mpg.de>
* tests/tst-dlopen.c: Return 77 in case of static modules, such that
all modules/pam_*/tst-pam_* tests yield SKIP instead of FAIL.
* libpam/Makefile.am (libpam_la_LIBADD): Use "$(shell ls ...)" instead
of "`ls ...`", to allow for static modules.
* libpam/pam_static_modules.h: Make pam_keyinit module depend on
HAVE_KEY_MANAGEMENT; correct name of pam_faildelay pam_module struct.
* modules/pam_faildelay/pam_faildelay.c: Correct name of pam_module
struct.
Diffstat (limited to 'libpam/Makefile.am')
-rw-r--r-- | libpam/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpam/Makefile.am b/libpam/Makefile.am index a0955441..0c188fdc 100644 --- a/libpam/Makefile.am +++ b/libpam/Makefile.am @@ -24,7 +24,7 @@ libpam_la_LDFLAGS = -no-undefined -version-info 81:9:81 libpam_la_LIBADD = @LIBAUDIT@ $(LIBPRELUDE_LIBS) @LIBDL@ if STATIC_MODULES - libpam_la_LIBADD += `ls ../modules/pam_*/*.lo` \ + libpam_la_LIBADD += $(shell ls ../modules/pam_*/*.lo) \ @LIBDB@ @LIBCRYPT@ @LIBNSL@ @LIBCRACK@ -lutil endif if HAVE_VERSIONING |