summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2009-08-04 14:01:09 +0200
committerKarolin Seeger <kseeger@samba.org>2009-08-04 14:06:07 +0200
commit9fae819cd93e56d68facc51586c5fb3bd228a5bc (patch)
tree3df5b7b0b851e584fef3dbf87915a7fce7d9cec8
parentc417f71b355dc09a45c8043c5f1a424a4eb4e217 (diff)
downloadsamba-9fae819cd93e56d68facc51586c5fb3bd228a5bc.tar.gz
Makefile.in: Fix installation of cifs.upcall.samba-3.0.36
INSTALLPERMS_BIN does not exist. Karolin (cherry picked from commit 3bcbe4a70ee07c688c3b6a286aeeacc634659545)
-rw-r--r--source/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Makefile.in b/source/Makefile.in
index cac2635986e..34b4490d25e 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -1599,8 +1599,8 @@ installcifsmount: @CIFSMOUNT_PROGS@
@$(SHELL) script/installbin.sh $(INSTALLPERMS) $(DESTDIR) $(prefix) $(ROOTSBINDIR) @CIFSMOUNT_PROGS@
installcifsupcall: @CIFSUPCALL_PROGS@
- @$(SHELL) $(srcdir)/script/installdirs.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(SBINDIR)
- @$(SHELL) script/installbin.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(prefix) $(SBINDIR) @CIFSUPCALL_PROGS@
+ @$(SHELL) $(srcdir)/script/installdirs.sh $(INSTALLPERMS) $(DESTDIR) $(SBINDIR)
+ @$(SHELL) script/installbin.sh $(INSTALLPERMS) $(DESTDIR) $(prefix) $(SBINDIR) @CIFSUPCALL_PROGS@
# Some symlinks are required for the 'probing' of modules.
# This mechanism should go at some point..
@@ -1734,7 +1734,7 @@ uninstallcifsmount:
@$(SHELL) script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR) $(prefix) $(ROOTSBINDIR) @CIFSMOUNT_PROGS@
uninstallcifsupcall:
- @$(SHELL) script/uninstallbin.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(prefix) $(ROOTSBINDIR) @CIFSUPCALL_PROGS@
+ @$(SHELL) script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR) $(prefix) $(ROOTSBINDIR) @CIFSUPCALL_PROGS@
uninstallmodules:
@$(SHELL) $(srcdir)/script/uninstallmodules.sh $(INSTALLPERMS) $(DESTDIR) $(prefix) $(VFSLIBDIR) $(VFS_MODULES)