From 157fe90d2ea172faa0b2f4e5fe5bfb8ce44a6520 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 17 Nov 1998 22:06:59 +0000 Subject: Changed Makefile.in to use autoconf prefixes. NOTE: The packaging scripts will have to be changed !!!! Jeremy. (This used to be commit 79c259f05cf7cd4f2d3d1bb92fff3bde7acd8a50) --- source3/Makefile.in | 12 +++++------- 1 file 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 -- cgit