diff options
author | jkh <jkh@FreeBSD.org> | 2000-01-08 09:34:45 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-01-08 09:34:45 +0000 |
commit | 5c653b6d35fbde6758f3f2a41a4d9975cc3148cc (patch) | |
tree | 72a4c908632668dd376bd343bab420f075ac53ab /gnu | |
parent | 81d7fdc3a36b977e583cdc2852e01210290bd93f (diff) | |
download | FreeBSD-src-5c653b6d35fbde6758f3f2a41a4d9975cc3148cc.zip FreeBSD-src-5c653b6d35fbde6758f3f2a41a4d9975cc3148cc.tar.gz |
Have to install from ${.CURDIR}, not ${.OBJDIR}.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/dialog/TESTS/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/dialog/TESTS/Makefile b/gnu/usr.bin/dialog/TESTS/Makefile index a9f05cc..1097122 100644 --- a/gnu/usr.bin/dialog/TESTS/Makefile +++ b/gnu/usr.bin/dialog/TESTS/Makefile @@ -5,7 +5,7 @@ FILES= README checklist ftreebox infobox inputbox menubox msgbox \ 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 |