diff options
author | anholt <anholt@FreeBSD.org> | 2004-05-09 14:58:54 +0800 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2004-05-09 14:58:54 +0800 |
commit | 32b2b654bdde3afa6d406f122206cc6640743e06 (patch) | |
tree | 488ccf8b21320b833ac76c4eaca63291e307aeaa | |
parent | b43b771a94365c56277c4067bb33bd836d31d02e (diff) | |
download | freebsd-ports-gnome-32b2b654bdde3afa6d406f122206cc6640743e06.tar.gz freebsd-ports-gnome-32b2b654bdde3afa6d406f122206cc6640743e06.tar.zst freebsd-ports-gnome-32b2b654bdde3afa6d406f122206cc6640743e06.zip |
Use INSTALL_DATA instead of INSTALL to install the headers.
-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> |