[12/14] batctl: Rename INSTALL_PREFIX to DESTDIR

Message ID 1305980898-30494-12-git-send-email-sven@narfation.org (mailing list archive)
State Accepted, archived
Commit 08e891f942f3ddcdc6ad93422a09582c38436da6
Headers

Commit Message

Sven Eckelmann May 21, 2011, 12:28 p.m. UTC
  Makefile generators like cmake or configure (generated by autotools)
usually use DESTDIR to allow the modification of the "root" path without
affecting other build steps.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
 Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
  

Comments

Marek Lindner May 22, 2011, 10:09 a.m. UTC | #1
On Saturday 21 May 2011 14:28:16 Sven Eckelmann wrote:
> Makefile generators like cmake or configure (generated by autotools)
> usually use DESTDIR to allow the modification of the "root" path without
> affecting other build steps.

Applied in revision 08e891f.

Thanks,
Marek
  

Patch

diff --git a/Makefile b/Makefile
index c2b07e7..b5aa6ca 100755
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@  COMPILE.c = $(Q_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
 LINK.o = $(Q_LD)$(CC) $(LDFLAGS) $(TARGET_ARCH)
 
 # standard install paths
-SBINDIR = $(INSTALL_PREFIX)/usr/sbin
+SBINDIR = /usr/sbin
 
 # try to generate revision
 REVISION = $(shell if [ -d .git ]; then echo $$(git describe --always --dirty 2> /dev/null || echo "[unknown]"); fi)
@@ -67,8 +67,8 @@  clean:
 	$(RM) $(BINARY_NAME) $(OBJ) $(DEP)
 
 install: $(BINARY_NAME)
-	$(MKDIR) $(SBINDIR)
-	$(INSTALL) -m 0755 $(BINARY_NAME) $(SBINDIR)
+	$(MKDIR) $(DESTDIR)$(SBINDIR)
+	$(INSTALL) -m 0755 $(BINARY_NAME) $(DESTDIR)$(SBINDIR)
 
 # load dependencies
 DEP = $(OBJ:.o=.d)