Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Jan 2000 22:43:31 -0500
From:      "Vladimir N. Silyaev" <vsilyaev@mindspring.com>
To:        freebsd-current@FreeBSD.ORG
Subject:   world broken in dialog
Message-ID:  <20000107224331.A2379@jupiter.delta.ny.us>

next in thread | raw e-mail | index | archive | help
...

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 majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000107224331.A2379>