From 089ab5e97c50de9e0f566bda9e881e0e3c7cb0bf Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 10 Oct 2011 19:43:28 -0700 Subject: [PATCH] Make should expand $(DESTDIR) on install This clearly was intentionaly - I just have no idea why you would want to do it? Signed-off-by: Dirk Hohndel --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 47835d3..0c67f40 100644 --- a/Makefile +++ b/Makefile @@ -47,8 +47,8 @@ $(NAME): $(OBJS) $(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS) install: $(NAME) - $(INSTALL) -d -m 755 '$(DESTDIR)' - $(INSTALL) $(NAME) '$(DESTDIR)' + $(INSTALL) -d -m 755 $(DESTDIR) + $(INSTALL) $(NAME) $(DESTDIR) parse-xml.o: parse-xml.c dive.h $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c `xml2-config --cflags` parse-xml.c -- 2.43.0