aboutsummaryrefslogtreecommitdiffstats
path: root/devel/asmutils
diff options
context:
space:
mode:
authordanfe <danfe@FreeBSD.org>2011-11-08 01:26:08 +0800
committerdanfe <danfe@FreeBSD.org>2011-11-08 01:26:08 +0800
commit7bf0d22ce6ce85584e32b86168dde2ee6b54c442 (patch)
tree82f122100fd68f7b2a622fe01e7d55d6e1a0ab17 /devel/asmutils
parent47d7bdfdc3c6aa1bdb05bb46dafbafc2a9c1dcc5 (diff)
downloadfreebsd-ports-gnome-7bf0d22ce6ce85584e32b86168dde2ee6b54c442.tar.gz
freebsd-ports-gnome-7bf0d22ce6ce85584e32b86168dde2ee6b54c442.tar.zst
freebsd-ports-gnome-7bf0d22ce6ce85584e32b86168dde2ee6b54c442.zip
Minor non-functional changes + relinquish to the pool.
Diffstat (limited to 'devel/asmutils')
-rw-r--r--devel/asmutils/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/asmutils/Makefile b/devel/asmutils/Makefile
index ebf586d1d556..f84a263fb921 100644
--- a/devel/asmutils/Makefile
+++ b/devel/asmutils/Makefile
@@ -11,7 +11,7 @@ PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://asm.sourceforge.net/asmutils/
-MAINTAINER= danfe@FreeBSD.org
+MAINTAINER= ports@FreeBSD.org
COMMENT= A set of UNIX utilities written in x86 assembly language
LICENSE= GPLv2
@@ -53,11 +53,11 @@ STRIP= #
do-install:
@${MKDIR} ${PREFIX}/bin/asmutils ${PREFIX}/lib/asmutils
-.for B in ${BINS}
- ${INSTALL_PROGRAM} ${WRKSRC}/src/${B} ${PREFIX}/bin/asmutils
+.for bin in ${BINS}
+ ${INSTALL_PROGRAM} ${WRKSRC}/src/${bin} ${PREFIX}/bin/asmutils
.endfor
-.for L in ${LIBS}
- ${INSTALL_PROGRAM} ${WRKSRC}/lib/${L} ${PREFIX}/lib/asmutils
+.for lib in ${LIBS}
+ ${INSTALL_PROGRAM} ${WRKSRC}/lib/${lib} ${PREFIX}/lib/asmutils
.endfor
(cd ${PREFIX}/bin/asmutils && \
${LN} -sf uname arch && \