diff options
author | Roger Hardiman <roger@FreeBSD.org> | 2002-01-14 16:23:07 +0000 |
---|---|---|
committer | Roger Hardiman <roger@FreeBSD.org> | 2002-01-14 16:23:07 +0000 |
commit | 91d95687b855110562d4b4696dc86c3c1d06f273 (patch) | |
tree | 1312d19ae44db8518dec6e8951de6365004d819e | |
parent | Install header files into /usr/local/include/sys (diff) |
Create directories prior to installing files.
Discovered when testing on a clean FreeBSD box.
Notes
Notes:
svn path=/head/; revision=53061
-rw-r--r-- | comms/ixj/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/comms/ixj/Makefile b/comms/ixj/Makefile index 798d6e65b5d8..8000c1537c58 100644 --- a/comms/ixj/Makefile +++ b/comms/ixj/Makefile @@ -31,7 +31,9 @@ post-patch: ${PERL} -pi.orig -e "s@%%PREFIX%%@${PREFIX}@g" ${WRKSRC}/ixj.sh do-install: + @${MKDIR} -p ${PREFIX}/modules @${INSTALL_DATA} ${WRKSRC}/ixj.ko ${PREFIX}/modules + @${MKDIR} -p ${PREFIX}/include/sys @${INSTALL_DATA} ${WRKSRC}/ixjuser.h ${PREFIX}/include/sys @${INSTALL_DATA} ${WRKSRC}/telephony.h ${PREFIX}/include/sys @${INSTALL_SCRIPT} ${WRKSRC}/ixj.sh ${PREFIX}/etc/rc.d/ |