mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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
1 changed files with 2 additions and 2 deletions
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…
Add table
Reference in a new issue