diff options
author | jmelo <jmelo@FreeBSD.org> | 2006-11-01 22:43:02 +0800 |
---|---|---|
committer | jmelo <jmelo@FreeBSD.org> | 2006-11-01 22:43:02 +0800 |
commit | 095c2558f7494b3f0d234e70d0ad757bade1dd44 (patch) | |
tree | 6abe009357d843aa7dc773c596c12c01d3650075 /sysutils | |
parent | b1ee743cd2cebae8bf79ca2d729e15e524306f33 (diff) | |
download | freebsd-ports-gnome-095c2558f7494b3f0d234e70d0ad757bade1dd44.tar.gz freebsd-ports-gnome-095c2558f7494b3f0d234e70d0ad757bade1dd44.tar.zst freebsd-ports-gnome-095c2558f7494b3f0d234e70d0ad757bade1dd44.zip |
- Add IGNORE to OSVERSION > 601104, because the port was added to base system.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/tinybsd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/tinybsd/Makefile b/sysutils/tinybsd/Makefile index 083f5771ee3e..591f9d22914a 100644 --- a/sysutils/tinybsd/Makefile +++ b/sysutils/tinybsd/Makefile @@ -18,10 +18,16 @@ COMMENT= Shell script to build embedded systems based on FreeBSD NO_BUILD= yes SUB_FILES= pkg-message +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 601104 +IGNORE= the port was added in base system in /usr/src/tools/tools/tinybsd +.endif + post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' ${WRKSRC}/tinybsd post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |