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 <dirk@hohndel.org>
This commit is contained in:
parent
bd8948386d
commit
089ab5e97c
4
Makefile
4
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user