summaryrefslogtreecommitdiff
path: root/print/xdvi/Makefile
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1998-12-01 21:14:08 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1998-12-01 21:14:08 +0000
commitdb3126e16ca4814417461edd4c50a3fef20805f3 (patch)
tree29044d697c01298865cbf246af1b0dc671144b07 /print/xdvi/Makefile
parentWhoops, forgot below info: (diff)
Do not create a file in ${SCRIPTDIR}. Create it in ${WRKDIR} and use a
post-install target instead. Requested by: asami
Notes
Notes: svn path=/head/; revision=15024
Diffstat (limited to 'print/xdvi/Makefile')
-rw-r--r--print/xdvi/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/print/xdvi/Makefile b/print/xdvi/Makefile
index 4bc750933d20..ddcd2374fd46 100644
--- a/print/xdvi/Makefile
+++ b/print/xdvi/Makefile
@@ -3,7 +3,7 @@
# Date created: 1 October 1994
# Whom: jmz
#
-# $Id: Makefile,v 1.23 1997/03/09 22:51:56 jmz Exp $
+# $Id: Makefile,v 1.24 1998/10/20 01:48:37 steve Exp $
#
DISTNAME= xdvi-20
@@ -36,7 +36,7 @@ do-install:
@(cd ${WRKSRC}; ${GMAKE} -f Makefile install BINDIR=${PREFIX}/bin)
@(cd ${WRKSRC}; ${INSTALL_SCRIPT} MakeTeXPK ${PREFIX}/bin)
-pre-clean:
- @rm -f ${SCRIPTDIR}/post-install
+post-install:
+ @if [ -f ${WRKDIR}/post-install ]; then sh ${WRKDIR}/post-install; fi
.include <bsd.port.mk>