1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

Make installation directory first so "tar -C" won't fail mysteriously

(by extracting the files in the current directory).  Closes PR
ports/2878.

Submitted by:	mita@jp.FreeBSD.org (MITA Yoshio)
This commit is contained in:
Satoshi Asami 1997-03-05 09:20:07 +00:00
parent f988e191d9
commit 2894454617
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=5851
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# Date created: 23 Nov 1996
# Whom: Mita Yoshio <mita@jp.FreeBSD.org>
#
# $Id: Makefile,v 1.4 1997/01/03 01:38:33 max Exp $
# $Id: Makefile,v 1.5 1997/03/03 06:37:52 asami Exp $
#
DISTNAME= ghostscript-4.03
@ -84,6 +84,7 @@ do-configure:
.endif
pre-install:
@mkdir -p ${PREFIX}/share/ghostscript
@tar -C ${PREFIX}/share/ghostscript -xzf ${DISTDIR}/${GS_FONTS_STD}
@tar -C ${PREFIX}/share/ghostscript -xzf ${DISTDIR}/${GS_FONTS_OTHER}

View File

@ -3,7 +3,7 @@
# Date created: 23 Nov 1996
# Whom: Mita Yoshio <mita@jp.FreeBSD.org>
#
# $Id: Makefile,v 1.4 1997/01/03 01:38:33 max Exp $
# $Id: Makefile,v 1.5 1997/03/03 06:37:52 asami Exp $
#
DISTNAME= ghostscript-4.03
@ -84,6 +84,7 @@ do-configure:
.endif
pre-install:
@mkdir -p ${PREFIX}/share/ghostscript
@tar -C ${PREFIX}/share/ghostscript -xzf ${DISTDIR}/${GS_FONTS_STD}
@tar -C ${PREFIX}/share/ghostscript -xzf ${DISTDIR}/${GS_FONTS_OTHER}