diff options
author | lioux <lioux@FreeBSD.org> | 2004-04-15 06:39:23 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2004-04-15 06:39:23 +0800 |
commit | 6309654195a1e82ac896504be6ec8bed1fb5924a (patch) | |
tree | 2bcf6d5313b885b5c8729edb1fb9cbcd77440f74 /math/djbfft | |
parent | d4b105888a4b8cb663e9269ab85b33af9f57cd40 (diff) | |
download | freebsd-ports-gnome-6309654195a1e82ac896504be6ec8bed1fb5924a.tar.gz freebsd-ports-gnome-6309654195a1e82ac896504be6ec8bed1fb5924a.tar.zst freebsd-ports-gnome-6309654195a1e82ac896504be6ec8bed1fb5924a.zip |
Fix typo: LOCALBASE -> PREFIX; when installing
Diffstat (limited to 'math/djbfft')
-rw-r--r-- | math/djbfft/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/djbfft/Makefile b/math/djbfft/Makefile index a3a840d2fb7d..90d40d870e7e 100644 --- a/math/djbfft/Makefile +++ b/math/djbfft/Makefile @@ -49,10 +49,10 @@ pre-install: do-install: .for file in ${HEADER_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${LOCALBASE}/include/${PORTNAME} + @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include/${PORTNAME} .endfor .for file in ${LIB_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${LOCALBASE}/lib + @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib .endfor .include <bsd.port.pre.mk> |