From 79f5cb8d130a635e0ee3eeb6a061a31d6bd7286e Mon Sep 17 00:00:00 2001 From: "John W. Linville" Date: Fri, 14 Feb 2014 13:39:14 -0500 Subject: [PATCH] crda: Add DESTDIR support in install-libreg* rules in Makefile Signed-off-by: John W. Linville --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4a351c645bf4..807a53819453 100644 --- a/Makefile +++ b/Makefile @@ -119,13 +119,13 @@ $(LIBREG): regdb.h reglib.h reglib.c install-libreg-headers: $(NQ) ' INSTALL libreg-headers' - $(Q)mkdir -p $(INCLUDE_DIR) - $(Q)cp *.h $(INCLUDE_DIR)/ + $(Q)mkdir -p $(DESTDIR)/$(INCLUDE_DIR) + $(Q)cp *.h $(DESTDIR)/$(INCLUDE_DIR)/ install-libreg: $(NQ) ' INSTALL libreg' - $(Q)mkdir -p $(LIBDIR) - $(Q)cp $(LIBREG) $(LIBDIR)/ + $(Q)mkdir -p $(DESTDIR)/$(LIBDIR) + $(Q)cp $(LIBREG) $(DESTDIR)/$(LIBDIR)/ $(Q)ldconfig %.o: %.c regdb.h $(LIBREG) -- 1.8.5.3