diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2003-11-27 07:54:20 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2003-11-27 07:54:20 +0000 |
commit | ad89e8953313866982bfd5bc69eab42a2b2b666d (patch) | |
tree | 2bab066758ab6ba19bb52075b0e7bebf107ae098 /libpamc | |
parent | 6216e61ca2ed39128a9d29ec2d7e389addb4812e (diff) | |
download | pam-ad89e8953313866982bfd5bc69eab42a2b2b666d.tar.gz pam-ad89e8953313866982bfd5bc69eab42a2b2b666d.tar.bz2 pam-ad89e8953313866982bfd5bc69eab42a2b2b666d.zip |
Relevant BUGIDs: 850092
Purpose of commit: bugfix
Commit summary:
---------------
Using the fakeroot option as normal user does not work, since
we call ldconfig, which aborts with an error message if not
called as root due missing permissions.
Fixed by calling ldconfig with -n library path option if FAKEROOT
is set.
Diffstat (limited to 'libpamc')
-rw-r--r-- | libpamc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpamc/Makefile b/libpamc/Makefile index 45d42051..49befe4b 100644 --- a/libpamc/Makefile +++ b/libpamc/Makefile @@ -83,7 +83,11 @@ install: all ifeq ($(DYNAMIC_LIBPAM),yes) $(MKDIR) $(FAKEROOT)$(libdir) $(INSTALL) -m $(SHLIBMODE) $(LIBNAMED) $(FAKEROOT)$(libdir)/$(LIBNAMEDFULL) +ifndef FAKEROOT $(LDCONFIG) +else + $(LDCONFIG) -n $(FAKEROOT)$(libdir) +endif ifneq ($(DYNTYPE),"sl") ( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBNAMED) ; ln -s $(LIBNAMEDNAME) $(LIBNAMED) ) endif |