summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 47835d306..0c67f40f7 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