diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-11-21 00:56:52 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-11-21 00:56:52 +0000 |
commit | a0c6af03d61cae807bdc5e6aa736865a8e5333b7 (patch) | |
tree | 385f9e60b028a83d0e83e360649adcaba06ba3ff /source3 | |
parent | a97baa50fdbf951cf3568b7068a7194f22642d52 (diff) | |
download | samba-a0c6af03d61cae807bdc5e6aa736865a8e5333b7.tar.gz samba-a0c6af03d61cae807bdc5e6aa736865a8e5333b7.tar.bz2 samba-a0c6af03d61cae807bdc5e6aa736865a8e5333b7.zip |
use bindir not sbindir in Makefile to ensure that we don't break
existing setups
(This used to be commit e97cbd6912a58d4985c2b8a649cfe6982809892d)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 5163f1e675..e439fccd50 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -23,7 +23,9 @@ SHELL=/bin/sh BASEDIR= @prefix@ BINDIR = @bindir@ -SBINDIR = @sbindir@ +# we don't use sbindir because we want full compatibility with +# the previous releases of Samba +SBINDIR = @bindir@ LIBDIR = @libdir@ VARDIR = $(BASEDIR)/var MANDIR = @mandir@ |