diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2004-05-09 06:58:54 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2004-05-09 06:58:54 +0000 |
commit | c4a774ed61c0dcf5f274f24c7d0d337e62ba9895 (patch) | |
tree | da549a07c2456712ef71b3ca804cf3362dd03857 | |
parent | Add port of libxkbfile from X.Org release 6.7.0. (diff) |
Use INSTALL_DATA instead of INSTALL to install the headers.
Notes
Notes:
svn path=/head/; revision=108716
-rw-r--r-- | x11/printext/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11/printext/Makefile b/x11/printext/Makefile index 569a6b5ea53e..c3311c549c32 100644 --- a/x11/printext/Makefile +++ b/x11/printext/Makefile @@ -23,8 +23,10 @@ WRKSRC= ${WRKDIR}/xc/include/extensions EXTRACT_AFTER_ARGS= | ${TAR} -xf - xc/include/extensions NO_BUILD= yes +DEST=${PREFIX}/include/X11/extensions + do-install: - ${INSTALL} ${WRKSRC}/Print.h ${PREFIX}/include/X11/extensions - ${INSTALL} ${WRKSRC}/Printstr.h ${PREFIX}/include/X11/extensions + ${INSTALL_DATA} ${WRKSRC}/Print.h ${DEST} + ${INSTALL_DATA} ${WRKSRC}/Printstr.h ${DEST} .include <bsd.port.mk> |