diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-09-14 13:32:06 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-09-14 13:32:06 +0000 |
commit | 4fe6852b8fc27fae11fdc1a2e6a04519dff79d2d (patch) | |
tree | 3c0e8bfe673a5c1e30efc1a8f7c2fa62a73243fc /devel/automake18 | |
parent | aa0a6b33abb64a760dac34854c5336e9dd14e0c3 (diff) | |
download | ports-4fe6852b8fc27fae11fdc1a2e6a04519dff79d2d.tar.gz ports-4fe6852b8fc27fae11fdc1a2e6a04519dff79d2d.zip |
Due to popular demant into each port which might be inserted into dependency
list by bsd.port.mk insert anti foot-shooting device, which prevents
infinite fork loop when the user defines corresponding USE_XXX in global
make.conf, command line or environment.
Similar devices should probably be inserted into ports that might be inserted
into dependency list by others bsd.foo.mk files (bsd.ruby.mk, bsd.python.mk
and so on.)
Notes
Notes:
svn path=/head/; revision=66299
Diffstat (limited to 'devel/automake18')
-rw-r--r-- | devel/automake18/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devel/automake18/Makefile b/devel/automake18/Makefile index 6bdf74a777bd..a63c7ea3d63d 100644 --- a/devel/automake18/Makefile +++ b/devel/automake18/Makefile @@ -21,6 +21,10 @@ WRKSRC= ${WRKDIR}/${DISTNAME} STRIP= # none +.if defined(USE_AUTOMAKE) || defined(USE_AUTOMAKE_VER) +.error You have `USE_AUTOMAKE' or `USE_AUTOMAKE_VER' variables defined either in environment or in make(1) arguments. Please undefine and try again. +.endif + pre-configure: ${PERL} -pi -e "s^%%X11BASE%%^${X11BASE}^" ${WRKSRC}/aclocal.in |