diff options
author | linimon <linimon@FreeBSD.org> | 2003-10-29 12:14:07 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-10-29 12:14:07 +0800 |
commit | 5d4e4c6f1cf2efcd5bc204cfd6c64942fd4d0107 (patch) | |
tree | 84d346a82abb243213fb824933217694da3afbb3 /shells | |
parent | 9055ee0a31dd14f18556c6dc25830f4d7f531bef (diff) | |
download | freebsd-ports-gnome-5d4e4c6f1cf2efcd5bc204cfd6c64942fd4d0107.tar.gz freebsd-ports-gnome-5d4e4c6f1cf2efcd5bc204cfd6c64942fd4d0107.tar.zst freebsd-ports-gnome-5d4e4c6f1cf2efcd5bc204cfd6c64942fd4d0107.zip |
Move inclusion of bsd.port.pre.mk past variable definitions.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/bash1/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shells/bash1/Makefile b/shells/bash1/Makefile index 4685ac3512d8..7002b3800c75 100644 --- a/shells/bash1/Makefile +++ b/shells/bash1/Makefile @@ -15,12 +15,6 @@ MASTER_SITE_SUBDIR= bash MAINTAINER= ports@FreeBSD.org COMMENT= The GNU Bourne Again Shell -- old version -.include <bsd.port.pre.mk> - -.if ${MACHINE_ARCH} != i386 -BROKEN= "does not compile on ${MACHINE_ARCH}" -.endif - NO_LATEST_LINK= yes WRKSRC= ${WRKDIR}/${DISTNAME} # Don't compress manpages or .so not works. @@ -28,6 +22,12 @@ NOMANCOMPRESS= yes MAN1= bash.1 bash_builtins.1 INFO= bash +.include <bsd.port.pre.mk> + +.if ${MACHINE_ARCH} != i386 +BROKEN= "does not compile on ${MACHINE_ARCH}" +.endif + post-install: @install-info ${PREFIX}/info/bash.info ${PREFIX}/info/dir |