diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-28 07:37:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-28 07:37:46 +0000 |
commit | 20b594e4b4d488366e508a44969096d71554e279 (patch) | |
tree | e6e466b3af1ee808f108f324ece8a031b3c9e8a7 /lang | |
parent | 5f3b935cfc6f4a5f17db9ed3976ddd675b8cf4b7 (diff) | |
download | pkgsrc-20b594e4b4d488366e508a44969096d71554e279.tar.gz |
Use "ln -s" instead of "cp -r" for making DragonFly equivalent to
NetBSD, since the latter command doesn't like the inaccessible files
that are created when patching against /dev/null.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sather/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/sather/Makefile b/lang/sather/Makefile index 8be0f138f73..d3edae3a8ff 100644 --- a/lang/sather/Makefile +++ b/lang/sather/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2007/02/20 19:04:14 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2007/11/28 07:37:46 rillig Exp $ DISTNAME= sather-1.2.1 PKGREVISION= 7 @@ -49,7 +49,7 @@ SUBST_SED.sather-configure= \ INSTALLATION_DIRS= ${PKGMANDIR}/man1 post-patch: - cd ${WRKSRC}/System/Platforms && ${CP} -r netbsd dragonfly + ln -s netbsd ${WRKSRC}/System/Platforms/dragonfly post-build: cd ${WRKSRC}/Emacs; \ |