diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-07-01 14:53:31 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-07-01 14:53:31 +1000 |
commit | b3e8d3ad99141f6c1aaf7c314284bb33ca9cf2bf (patch) | |
tree | bde6c2c72ed37d3724fa0d170e9764c41f0358bd | |
parent | ddeb22861e2285ae3871332b5d7617a407319eb9 (diff) | |
download | samba-b3e8d3ad99141f6c1aaf7c314284bb33ca9cf2bf.tar.gz samba-b3e8d3ad99141f6c1aaf7c314284bb33ca9cf2bf.tar.bz2 samba-b3e8d3ad99141f6c1aaf7c314284bb33ca9cf2bf.zip |
Create PREFIX/var/lib and PREFIX/var/run in 'make install'.
This is a problem because the location of the winbind privilaged pipe
moved.
Andrew Bartlett
(This used to be commit 68afc2893c032be0a8a31d996f90574ceb6c10ad)
-rw-r--r-- | source4/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/Makefile b/source4/Makefile index 93c6f4575d..fba06ccfa9 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -199,6 +199,8 @@ installdirs:: $(DESTDIR)$(modulesdir) \ $(DESTDIR)$(mandir) \ $(DESTDIR)$(localstatedir) \ + $(DESTDIR)$(localstatedir)/lib \ + $(DESTDIR)$(localstatedir)/run \ $(DESTDIR)$(privatedir) \ $(DESTDIR)$(datadir) \ $(DESTDIR)$(piddir) \ @@ -207,7 +209,7 @@ installdirs:: $(DESTDIR)$(privatedir)/tls \ $(DESTDIR)$(includedir) \ $(DESTDIR)$(PKGCONFIGDIR) \ - $(DESTDIR)$(sysconfdir) \ + $(DESTDIR)$(sysconfdir) installbin:: $(SBIN_PROGS) $(BIN_PROGS) $(TORTURE_PROGS) installdirs @$(SHELL) $(srcdir)/script/installtorture.sh \ |