aboutsummaryrefslogtreecommitdiff
path: root/sysutils/gpart
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2014-01-28 14:45:30 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2014-01-28 14:45:30 +0000
commita0119d96b0dcb886a3007c8e081a602fd348929d (patch)
treeabd5f78841908e1bcf4c69bc8c7d5c0670cc9db9 /sysutils/gpart
parent28e28658d6ce6b3049f2cbebeb6480f120b6b4f0 (diff)
downloadports-a0119d96b0dcb886a3007c8e081a602fd348929d.tar.gz
ports-a0119d96b0dcb886a3007c8e081a602fd348929d.zip
- Remove references to long unsupported "alpha" architecture
- While here, cleanup and simplify the Makefiles
Notes
Notes: svn path=/head/; revision=341586
Diffstat (limited to 'sysutils/gpart')
-rw-r--r--sysutils/gpart/Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/sysutils/gpart/Makefile b/sysutils/gpart/Makefile
index d10462b88fba..ceb2a705233d 100644
--- a/sysutils/gpart/Makefile
+++ b/sysutils/gpart/Makefile
@@ -18,15 +18,12 @@ PLIST_FILES= sbin/gpart man/man8/gpart.8.gz
CFLAGS+= -std=c99
OPTIONS_DEFINE= STATIC
+STATIC_LDFLAGS= -static
.include <bsd.port.options.mk>
-.if ${ARCH} != "i386" && ${ARCH} != "alpha" && ${ARCH} != "amd64"
-BROKEN= Only compiles on i386, amd64 and alpha.
-.endif
-
-.if ${PORT_OPTIONS:MSTATIC}
-LDFLAGS+= -static
+.if ${ARCH} != "i386" && ${ARCH} != "amd64"
+BROKEN= only compiles on i386 and amd64
.endif
.include <bsd.port.mk>