diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-12-18 11:19:05 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-12-18 11:19:05 +0000 |
commit | 7e3963da6327861c3aeac0c9b4fe55955140be55 (patch) | |
tree | 9a66b20717dc557398276ca836455063ea6844a9 /korean/pine/files | |
parent | Whoops, the last change to BUILD_DEPENDS was bogus. Revert. (diff) |
Use ${FILESDIR} instead of "../../files"; pass it in MAKE_ENV.
Notes
Notes:
svn path=/head/; revision=15414
Diffstat (limited to 'korean/pine/files')
-rw-r--r-- | korean/pine/files/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/korean/pine/files/Makefile b/korean/pine/files/Makefile index 2a5748e8ecc2..2874cc1f71e7 100644 --- a/korean/pine/files/Makefile +++ b/korean/pine/files/Makefile @@ -6,10 +6,10 @@ install: install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} bin/pico ${PREFIX}/bin/pico install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} bin/pilot ${PREFIX}/bin/pilot install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} bin/pine ${PREFIX}/bin/pine - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ../../files/pgpencrypt ${PREFIX}/bin/pgpencrypt - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ../../files/pgpdecode ${PREFIX}/bin/pgpdecode - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ../../files/pgpsign ${PREFIX}/bin/pgpsign - install -c -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} ../../files/dot.pinerc.pgp.sample ${PREFIX}/etc/dot.pinerc.pgp.sample + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${FILESDIR}/pgpencrypt ${PREFIX}/bin/pgpencrypt + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${FILESDIR}/pgpdecode ${PREFIX}/bin/pgpdecode + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${FILESDIR}/pgpsign ${PREFIX}/bin/pgpsign + install -c -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} ${FILESDIR}/dot.pinerc.pgp.sample ${PREFIX}/etc/dot.pinerc.pgp.sample install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} doc/pico.1 ${PREFIX}/man/man1/pico.1 install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} doc/pilot.1 ${PREFIX}/man/man1/pilot.1 install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} doc/pine.1 ${PREFIX}/man/man1/pine.1 |