[Midnightbsd-cvs] mports: Makefile: Magus claims this is installing something outside the
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Aug 23 16:48:52 EDT 2008
Log Message:
-----------
Magus claims this is installing something outside the fakedir (finaldir) but I can't figure out what it is.
There isn't an install target with the included Makefile and the datadir and docsdir stuff looks good. I've used @ to silence the output after i verified it's accuracy.
There could be something named similar or something in the magus tarball that is being picked up? I need to look at how magus does the check to narrow it down.
Modified Files:
--------------
mports/comms/chu:
Makefile (r1.1 -> r1.2)
-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/comms/chu/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -L comms/chu/Makefile -L comms/chu/Makefile -u -r1.1 -r1.2
--- comms/chu/Makefile
+++ comms/chu/Makefile
@@ -32,27 +32,24 @@
${EXTRACT_CMD} -d ${WRKSRC}/testsignal.gz
post-patch:
- ${REINPLACE_CMD} -e 's|/etc/chu|${PREFIX}/etc/chu|g' ${WRKSRC}/chu.c ${WRKSRC}/chu.8
- ${REINPLACE_CMD} -e 's|/sbin/chu|${PREFIX}/sbin/chu|g' ${WRKSRC}/chu.8
+ @${REINPLACE_CMD} -e 's|/etc/chu|${PREFIX}/etc/chu|g' ${WRKSRC}/chu.c ${WRKSRC}/chu.8
+ @${REINPLACE_CMD} -e 's|/sbin/chu|${PREFIX}/sbin/chu|g' ${WRKSRC}/chu.8
@${REINPLACE_CMD} -e 's|gcc -O2|${CC} ${CFLAGS}|g' ${WRKSRC}/Makefile
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/chu ${PREFIX}/sbin
- ${MKDIR} ${DATADIR}
- ${INSTALL_DATA} ${WRKSRC}/testsignal ${DATADIR}
- ${INSTALL_MAN} ${WRKSRC}/chu.8 ${PREFIX}/man/man8
+ @${INSTALL_PROGRAM} ${WRKSRC}/chu ${PREFIX}/sbin
+ @${MKDIR} ${DATADIR}
+ @${INSTALL_DATA} ${WRKSRC}/testsignal ${DATADIR}
+ @${INSTALL_MAN} ${WRKSRC}/chu.8 ${PREFIX}/man/man8
.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
+ @${MKDIR} ${DOCSDIR}
.for d in ${WRKSRC}/COPYING \
${WRKSRC}/TESTING \
${WRKSRC}/chu.html \
${WRKSRC}/chuman.html \
${WRKSRC}/ntp.html
- ${INSTALL_DATA} ${WRKSRC}/${d} ${DOCSDIR}
+ @${INSTALL_DATA} ${WRKSRC}/${d} ${DOCSDIR}
.endfor
- @${ECHO} ""
- @${ECHO} "chu docs installed in ${DOCSDIR}"
- @${ECHO} ""
.endif
.include <bsd.port.mk>
More information about the Midnightbsd-cvs
mailing list