diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2003-11-26 10:31:10 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2003-11-26 10:31:10 +0000 |
commit | 9ab56e3be6dc9a7df2812a64c3d7acbfd385d9fc (patch) | |
tree | 3f6c18d63eda571c36e612a4a33e23aba0749f29 /libpam | |
parent | 9ebb94c98ea89a15d738d02f07ab5a63220e851b (diff) | |
download | pam-9ab56e3be6dc9a7df2812a64c3d7acbfd385d9fc.tar.gz pam-9ab56e3be6dc9a7df2812a64c3d7acbfd385d9fc.tar.bz2 pam-9ab56e3be6dc9a7df2812a64c3d7acbfd385d9fc.zip |
Relevant BUGIDs: 849545
Purpose of commit: bugfix/cleanup
Commit summary:
---------------
CFLAGS from configure run is ignored by Make.Rules.
modules should build after libpam, so that we can link against libpam.
In one place, "ar" instead of "$(AR)" is used.
Diffstat (limited to 'libpam')
-rw-r--r-- | libpam/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpam/Makefile b/libpam/Makefile index d87cb028..e2b9649e 100644 --- a/libpam/Makefile +++ b/libpam/Makefile @@ -112,7 +112,7 @@ endif $(LIBPAMSTATIC): $(SLIBOBJECTS) ifeq ($(STATIC_LIBPAM),yes) - ar cr $@ $(SLIBOBJECTS) $(MODULES) + $(AR) cr $@ $(SLIBOBJECTS) $(MODULES) $(RANLIB) $@ endif |