diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2002-06-27 04:04:54 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2002-06-27 04:04:54 +0000 |
commit | 09d18a79f0e11ad5dd90e3007f7ae688bc50693c (patch) | |
tree | ee50cca9c611775ad78ab619ace5dd6d5b1eb1ac /libpam_misc | |
parent | e509c5af6f70eb3cfd846004b82caaca24fd4a3b (diff) | |
download | pam-09d18a79f0e11ad5dd90e3007f7ae688bc50693c.tar.gz pam-09d18a79f0e11ad5dd90e3007f7ae688bc50693c.tar.bz2 pam-09d18a79f0e11ad5dd90e3007f7ae688bc50693c.zip |
Relevant BUGIDs: 565470
Purpose of commit: bugfix
Commit summary:
---------------
It seems that configure was barfing on some packages because libpam_misc
could not compile without also being linked to libpam.
Diffstat (limited to 'libpam_misc')
-rw-r--r-- | libpam_misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpam_misc/Makefile b/libpam_misc/Makefile index 9cd464c8..e9b1a6c1 100644 --- a/libpam_misc/Makefile +++ b/libpam_misc/Makefile @@ -16,6 +16,7 @@ VERSION=.$(MAJOR_REL) MODIFICATION=.$(MINOR_REL) CFLAGS += $(MOREFLAGS) $(DYNAMIC) $(STATIC) +LINKLIBS += -L$(absolute_objdir)/libpam -lpam # dynamic library names |