From ce8f3428a2f2c70ae1b68c9a512995e17f913a70 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 12 Mar 2008 18:19:16 +0200 Subject: [PATCH] [BUILD] Removed "/" after '$(DESTDIR)' in install targets SBINDIR, MANDIR and DOCDIR use an absolute path --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 0e8649a77..6beee0baf 100644 --- a/Makefile +++ b/Makefile @@ -479,18 +479,18 @@ src/dlmalloc.o: $(DLMALLOC_SRC) $(CC) $(COPTS) -DDEFAULT_MMAP_THRESHOLD=$(DLMALLOC_THRES) -c -o $@ $< install-man: - install -d $(DESTDIR)/$(MANDIR)/man1 - install -m 644 doc/haproxy.1 $(DESTDIR)/$(MANDIR)/man1 + install -d $(DESTDIR)$(MANDIR)/man1 + install -m 644 doc/haproxy.1 $(DESTDIR)$(MANDIR)/man1 install-doc: - install -d $(DESTDIR)/$(DOCDIR) + install -d $(DESTDIR)$(DOCDIR) for x in configuration architecture haproxy-en haproxy-fr; do \ - install -m 644 doc/$$x.txt $(DESTDIR)/$(DOCDIR) ; \ + install -m 644 doc/$$x.txt $(DESTDIR)$(DOCDIR) ; \ done install-bin: all - install -d $(DESTDIR)/$(SBINDIR) - install haproxy $(DESTDIR)/$(SBINDIR) + install -d $(DESTDIR)$(SBINDIR) + install haproxy $(DESTDIR)$(SBINDIR) install: install-doc install-man install-bin