diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-17 22:06:59 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-17 22:06:59 +0000 |
commit | 157fe90d2ea172faa0b2f4e5fe5bfb8ce44a6520 (patch) | |
tree | ae073fbce775b1e4d612d6c93916d782555c5170 | |
parent | 768761820e8d7481c586c4e0ab4ac7cb36d18c4b (diff) | |
download | samba-157fe90d2ea172faa0b2f4e5fe5bfb8ce44a6520.tar.gz samba-157fe90d2ea172faa0b2f4e5fe5bfb8ce44a6520.tar.bz2 samba-157fe90d2ea172faa0b2f4e5fe5bfb8ce44a6520.zip |
Changed Makefile.in to use autoconf prefixes.
NOTE: The packaging scripts will have to be changed !!!!
Jeremy.
(This used to be commit 79c259f05cf7cd4f2d3d1bb92fff3bde7acd8a50)
-rw-r--r-- | source3/Makefile.in | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 96ba7306d4..e1104af446 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -6,8 +6,6 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ mandir=@mandir@ -INSTALL_BIN=$(exec_prefix)/bin -INSTALL_MAN=$(prefix)/man LIBS=@LIBS@ CC=@CC@ @@ -22,12 +20,12 @@ srcdir=@srcdir@ builddir=@builddir@ SHELL=/bin/sh -BASEDIR=$(prefix)/samba -BINDIR = $(BASEDIR)/bin -SBINDIR = $(BASEDIR)/bin -LIBDIR = $(BASEDIR)/lib +BASEDIR=@prefix@ +BINDIR = @bindir@ +SBINDIR = @sbindir@ +LIBDIR = @libdir@ VARDIR = $(BASEDIR)/var -MANDIR = $(BASEDIR)/man +MANDIR = @mandir@ # The permissions to give the executables INSTALLPERMS = 0755 |