diff options
author | agc <agc> | 1999-08-27 15:28:46 +0000 |
---|---|---|
committer | agc <agc> | 1999-08-27 15:28:46 +0000 |
commit | c723ac50a3832a8e138aa7cc504e59492853c74d (patch) | |
tree | 1c2d940ea36743d04e948a30aff68a4b148028a1 /emulators/wine/Makefile | |
parent | 7924ff2b2cbeaa75f2ec59f17a78fe4c977bb50b (diff) | |
download | pkgsrc-c723ac50a3832a8e138aa7cc504e59492853c74d.tar.gz |
Provide an error message if an attempt is made to build this package
on a NetBSD/i386 ELF platform.
Diffstat (limited to 'emulators/wine/Makefile')
-rw-r--r-- | emulators/wine/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 75c5f97713f..61738f09f52 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 1999/05/24 20:39:42 tv Exp $ +# $NetBSD: Makefile,v 1.19 1999/08/27 15:28:46 agc Exp $ DISTNAME= Wine-981211 PKGNAME= wine-981211 @@ -19,4 +19,10 @@ CONFIGURE_ARGS+= --enable-dll post-install: ${INSTALL_DATA} ${WRKSRC}/wine.ini ${PREFIX}/etc/wine.conf.example +post-extract: + @case `${MAKE} show-shlib-type` in \ + ELF) ${ECHO} "Sorry, this package does not work with ELF object formats"; \ + ${FALSE} ;; \ + esac + .include "../../mk/bsd.pkg.mk" |