diff options
author | joerg <joerg@pkgsrc.org> | 2016-02-23 15:19:23 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2016-02-23 15:19:23 +0000 |
commit | e280ebfa474e0937534ff710ffd6d5568c95ef35 (patch) | |
tree | 6b452e026e7a9c1ba106f223fcfe290cbf134674 /lang/clisp | |
parent | 6dc1177a73179d7e35e2ab88a63ac791f859a7b7 (diff) | |
download | pkgsrc-e280ebfa474e0937534ff710ffd6d5568c95ef35.tar.gz |
Add a new override mechanism for depcomp, similar to the existing
overrides for libtool. This allows us to easily get the fixed version
from our libtool in place without having to hunt down for the specific
bugs in random places. Disable the override explicitly in clisp, which
installs a copy without explicitly depending on libtool at run time.
Diffstat (limited to 'lang/clisp')
-rw-r--r-- | lang/clisp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 98751acee72..cfd37f863b8 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.105 2015/01/04 03:17:17 dholland Exp $ +# $NetBSD: Makefile,v 1.106 2016/02/23 15:19:23 joerg Exp $ # DISTNAME= clisp-2.49 @@ -20,6 +20,9 @@ BROKEN_ON_PLATFORM+= MirBSD-*-* MAKE_JOBS_SAFE= no +# Installs a copy of its own depcomp, avoid libtool dependency here. +OVERRIDE_DIRDEPTH.depcomp= 0 + GNU_CONFIGURE= yes CONFIGURE_DIRS= . USE_LIBTOOL= yes |