diff options
author | Simo Sorce <idra@samba.org> | 2006-05-30 19:58:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:15 -0500 |
commit | 7e5ab9629050a03840a2d6ca4086e5d52fbb3d15 (patch) | |
tree | a159fea666f1ba2383dca99f0162ffe7f6a9e5dc | |
parent | 73cc5f1e259fac9656df6a030a91b5005cba1da4 (diff) | |
download | samba-7e5ab9629050a03840a2d6ca4086e5d52fbb3d15.tar.gz samba-7e5ab9629050a03840a2d6ca4086e5d52fbb3d15.tar.bz2 samba-7e5ab9629050a03840a2d6ca4086e5d52fbb3d15.zip |
r15965: Pam modules install fix, thanks to Ryan Novosielski for spotting this one
(This used to be commit 8f5b198acaca5ce14ab1098d86f34df9a67619d4)
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index effd438def..46393fdcd8 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1479,7 +1479,7 @@ installpammodules: $(PAM_MODULES) @$(SHELL) $(srcdir)/script/installdirs.sh $(INSTALLPERMS) $(DESTDIR) $(PAMMODULESDIR) @for module in $(PAM_MODULES); do \ echo "Installing module $${module} as $(DESTDIR)/$(PAMMODULESDIR)/$${module}.@SHLIBEXT@ "; \ - install -m $(INSTALLPERMS) bin/$${module}.@SHLIBEXT@ \ + $(INSTALLCMD) -m $(INSTALLPERMS) bin/$${module}.@SHLIBEXT@ \ "$(DESTDIR)/$(PAMMODULESDIR)"; \ done |