Date: Tue, 20 Aug 2002 00:58:33 +0900 From: Norikatsu Shigemura <nork@FreeBSD.org> To: freebsd-ports@FreeBSD.org Cc: portmgr@FreeBSD.org Subject: MLINKS is ignored at make generate-plist. Message-ID: <200208191558.g7JFwX0f021679@nd250009.gab.xdsl.ne.jp>
next in thread | raw e-mail | index | archive | help
Dear. I found a problem that MLINKS is ignored at `make generate-plist'. So manual files specified MLINKS were installed, but are not able to delete by pkg_delete. Because these are not in pkg-plist(+CONTENTS). Fix: Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.421 diff -u -u -r1.421 bsd.port.mk --- bsd.port.mk 4 Aug 2002 09:03:47 -0000 1.421 +++ bsd.port.mk 19 Aug 2002 15:52:23 -0000 @@ -1748,7 +1748,7 @@ .endfor -.if defined(_MLINKS) && make(generate-plist) +.if defined(_MLINKS) _TMLINKS!= ${ECHO_CMD} ${_MLINKS} | ${AWK} '{for (i=2; i<=NF; i+=2) print $$i}' .else _TMLINKS= I don't know why `make generate-plist' was ignored. Clearly `make generate-plist' is success. But `make install and packages' is not so. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200208191558.g7JFwX0f021679>