Date: Tue, 13 Aug 2002 13:15:56 +0200 (CEST) From: Martin Blapp <mb@imp.ch> To: <dougb@freebsd.org>, <hackers@freebsd.org> Subject: Wrong paths for named-xfer (STABLE/CURRENT) Message-ID: <20020813130926.O4313-100000@levais.imp.ch>
next in thread | raw e-mail | index | archive | help
Hi, We noted that named-xfer does not work in STABLE and CURRENT. Named does look for it in /usr/local/libexec than in /usr/libexec. But named-xfer gets installed into /usr/libexec. I guess the paths are just plain wrong here in the Makefile. I made a patch: --- contrib/bind/bin/named/Makefile.orig Tue Aug 13 13:05:29 2002 +++ contrib/bind/bin/named/Makefile Tue Aug 13 13:05:32 2002 @@ -33,9 +33,9 @@ EXE= YACC = yacc -d SYSLIBS = -ll -lutil -DESTBIN = /usr/local/bin -DESTSBIN = /usr/local/sbin -DESTEXEC = /usr/local/libexec +DESTBIN = /usr/bin +DESTSBIN = /usr/sbin +DESTEXEC = /usr/libexec DESTMAN = /usr/share/man DESTHELP= /usr/share/misc DESTETC= /etc We don't install named into /usr/local, do we ? Martin Martin Blapp, <mb@imp.ch> <mbr@FreeBSD.org> ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 061 826 93 00: +41 61 826 93 01 PGP: <finger -l mbr@freebsd.org> PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020813130926.O4313-100000>