From: Daniel Carl Date: Mon, 15 Jun 2015 13:44:26 +0000 (+0200) Subject: Fixed Makefile install target using -D. X-Git-Url: https://git.owens.tech/rss.xml/rss.xml/git?a=commitdiff_plain;h=8cedf9c41352ca46647290fbe911bf19d83a8f60;p=vimb.git Fixed Makefile install target using -D. Tanks to Leonardo Taccari for this patch. The -D option of install has a different meaning in BSD, so we avoid it here. --- diff --git a/Makefile b/Makefile index 924e1b7..e21743e 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,8 @@ clean: @$(MAKE) $(MFLAGS) -C tests clean install: $(TARGET) $(DOCDIR)/$(MAN1) - install -D -m 755 $(SRCDIR)/$(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) + install -d $(DESTDIR)$(BINDIR) + install -m 755 $(SRCDIR)/$(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) install -d $(DESTDIR)$(EXAMPLEDIR) cp -r examples/* $(DESTDIR)$(EXAMPLEDIR) install -d $(DESTDIR)$(MANDIR)/man1