diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-07-24 06:00:36 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-07-24 06:00:36 +0000 |
commit | c020c36d2b268abadb57f4d0d5cae6d043cd1133 (patch) | |
tree | 7dd28f7008f4c05b24bd7a8fe8f460256e530a85 /audio/rosegarden | |
parent | Fix install error, ${INSTALL_MAN} ${MAN8} -> .. ${MAN8}.gz. (diff) |
Create a directory before installing data to it in case it wasn't
there in the first place.
Noticed by: bento.freebsd.org
Notes
Notes:
svn path=/head/; revision=20337
Diffstat (limited to 'audio/rosegarden')
-rw-r--r-- | audio/rosegarden/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/rosegarden/Makefile b/audio/rosegarden/Makefile index a30bcff905e0..fe7f65d88bec 100644 --- a/audio/rosegarden/Makefile +++ b/audio/rosegarden/Makefile @@ -3,7 +3,7 @@ # Date created: 04 Aug 1996 # Whom: shanee@augusta.de # -# $Id: Makefile,v 1.8 1999/07/11 20:52:07 cpiazza Exp $ +# $Id: Makefile,v 1.9 1999/07/11 20:53:13 cpiazza Exp $ # DISTNAME= rosegarden-2.1 @@ -26,6 +26,7 @@ CONFIGURE_ARGS= --with-tclincl=${LOCALBASE}/include/tcl8.0/ CONFIGURE_ENV= LIBS="-L${PREFIX}/lib" do-install: + @${MKDIR} ${PREFIX}/lib/X11/app-defaults @( \ cd ${WRKSRC} ; ${SETENV} PREFIX="${PREFIX}" ./do-install \ ) |