Hello Daniel and the entire Vimb community! Daniel Carl writes: > [...] > After a long time, and less time, vimb 2.10 is now released. > [...] Thank you very much for it!
Just a very small note regarding Makefile... I have updated the package in pkgsrc-wip and I had needed to adjust two lines in Makefile (install(1)[0] -D option in NetBSD have a different behaviour, the same applies also to FreeBSD[1] and OpenBSD[2]). I will attach the patch discussed in this email. Thank you for the release and keep up the good work! Ciao, L. [0]: http://netbsd.gw.com/cgi-bin/man-cgi?install+1+NetBSD-current [1]: http://www.freebsd.org/cgi/man.cgi?query=install&apropos=0&sektion=1&manpath=FreeBSD+11-current&arch=default&format=html [2]: http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/install.1?query=install&sec=1
$NetBSD$ o Get rid of the -D install(1) option. o Properly create the BINDIR like all other directories used. --- Makefile.orig 2015-06-13 15:29:55.000000000 +0000 +++ 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
------------------------------------------------------------------------------
_______________________________________________ vimb-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/vimb-users