diff options
author | asami <asami@FreeBSD.org> | 1997-01-24 19:43:57 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-01-24 19:43:57 +0800 |
commit | 75c3e0a01934e3d1ba335988710dd3d4c6b1b0b1 (patch) | |
tree | 7295552407cd4b5ce212afd9d6b614042def22ee /misc/rpm | |
parent | aa8eae6229f952680354401b9c1072deb91d26e6 (diff) | |
download | freebsd-ports-gnome-75c3e0a01934e3d1ba335988710dd3d4c6b1b0b1.tar.gz freebsd-ports-gnome-75c3e0a01934e3d1ba335988710dd3d4c6b1b0b1.tar.zst freebsd-ports-gnome-75c3e0a01934e3d1ba335988710dd3d4c6b1b0b1.zip |
Create directory before installation.
Diffstat (limited to 'misc/rpm')
-rw-r--r-- | misc/rpm/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/rpm/Makefile b/misc/rpm/Makefile index 712f3e9f8936..87e7a8f33833 100644 --- a/misc/rpm/Makefile +++ b/misc/rpm/Makefile @@ -3,7 +3,7 @@ # Date created: 23 January 1997 # Whom: Thomas Gellekum <tg@FreeBSD.ORG> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/01/24 07:50:07 tg Exp $ # DISTNAME= rpm-2.3.2 @@ -18,4 +18,7 @@ GNU_CONFIGURE= yes USE_GMAKE= yes MAN8= rpm.8 rpm2cpio.8 +pre-install: + ${MKDIR} ${PREFIX}/include/rpm + .include <bsd.port.mk> |