From: Dirk Hohndel Date: Tue, 11 Oct 2011 02:43:28 +0000 (-0700) Subject: Make should expand $(DESTDIR) on install X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=089ab5e97c50de9e0f566bda9e881e0e3c7cb0bf;p=ext%2Fsubsurface.git 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 --- 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