From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from danbala.tuwien.ac.at (danbala.ifoer.tuwien.ac.at [128.130.168.64]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id p359OkHT019383 for ; Tue, 5 Apr 2011 05:24:47 -0400 (EDT) Received: by danbala.tuwien.ac.at (Postfix, from userid 116) id 028B73921AF; Tue, 5 Apr 2011 11:24:46 +0200 (CEST) Date: Tue, 5 Apr 2011 11:24:45 +0200 From: Thomas Klausner To: discuss@mdocml.bsd.lv Subject: Re: mdocml version 1.11.1 available Message-ID: <20110405092445.GF7727@danbala.tuwien.ac.at> References: <4D9A3607.9070503@bsd.lv> <4D9A4192.3000005@bsd.lv> <20110405085449.GC7727@danbala.tuwien.ac.at> <4D9ADACB.7010709@bsd.lv> X-Mailinglist: mdocml-discuss Reply-To: discuss@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Md/poaVZ8hnGTzuv" Content-Disposition: inline In-Reply-To: <4D9ADACB.7010709@bsd.lv> --Md/poaVZ8hnGTzuv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Apr 05, 2011 at 11:03:07AM +0200, Kristaps Dzonsons wrote: > mdoc.3, man.3, and roff.3 have been removed in favour of mandoc.3 > (as of Makefile 1.317). Your downstream Makefile is probably out of > date... Ah true, sorry for the false alarm. We had a manual install target... while removing that, I found two issues: PREFIX is set with =, please use ?= to set it. LIBDIR is not created. Patch attached. Thomas --Md/poaVZ8hnGTzuv Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-Makefile $NetBSD$ --- Makefile.orig 2011-04-04 22:07:17.000000000 +0000 +++ Makefile @@ -15,7 +15,7 @@ VERSION = 1.11.1 VDATE = 04 April 2011 CFLAGS += -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\"" CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings -PREFIX = /usr/local +PREFIX ?= /usr/local BINDIR = $(PREFIX)/bin INCLUDEDIR = $(PREFIX)/include/mandoc LIBDIR = $(PREFIX)/lib/mandoc @@ -290,6 +290,7 @@ clean: install: all mkdir -p $(DESTDIR)$(BINDIR) mkdir -p $(DESTDIR)$(EXAMPLEDIR) + mkdir -p $(DESTDIR)$(LIBDIR) mkdir -p $(DESTDIR)$(MANDIR)/man1 mkdir -p $(DESTDIR)$(MANDIR)/man3 mkdir -p $(DESTDIR)$(MANDIR)/man7 --Md/poaVZ8hnGTzuv-- -- To unsubscribe send an email to discuss+unsubscribe@mdocml.bsd.lv