...

install -c -o root -g wheel -m 444 README  /usr/share/examples/dialog
install: README: No such file or directory
*** Error code 71

The following patch fixed the problem:

--- gnu/usr.bin/dialog/TESTS/Makefile.orig      Fri Jan  7 22:35:43 2000
+++ gnu/usr.bin/dialog/TESTS/Makefile   Fri Jan  7 22:36:09 2000
@@ -5,7 +5,7 @@
 
 beforeinstall:
 .for file in ${FILES}
-       ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${file} \
+       ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/${file} \
                ${DESTDIR}/usr/share/examples/dialog
 .endfor
 
-- 
Vladimir Silyaev


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to