From: Andrew Tridgell Date: Sat, 21 Nov 1998 00:56:52 +0000 (+0000) Subject: use bindir not sbindir in Makefile to ensure that we don't break X-Git-Tag: samba-4.0.0alpha6~801^2~21114 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=a0c6af03d61cae807bdc5e6aa736865a8e5333b7;ds=sidebyside use bindir not sbindir in Makefile to ensure that we don't break existing setups (This used to be commit e97cbd6912a58d4985c2b8a649cfe6982809892d) --- diff --git a/source3/Makefile.in b/source3/Makefile.in index 5163f1e675f..e439fccd508 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@