diff options
author | Lexi Winter <ivy@FreeBSD.org> | 2025-09-20 16:46:08 +0100 |
---|---|---|
committer | Lexi Winter <ivy@FreeBSD.org> | 2025-09-20 16:46:47 +0100 |
commit | ca139ab695b7dbfae378b82ce4dac253e2e9dea2 (patch) | |
tree | ae29511ec0e4b0f9ebfb497417bd6cb26954802d | |
parent | shells/zsh: Add Functions/VCS_Info to SHEBANG_FILES (diff) |
devel/gnulib: Fix shebangfix for clisp
Uses/shebangfix.mk doesn't know about clisp, and without this, stage-qa
complains when ${LOCALBASE} is not /usr/local since we don't replace the
shebang.
Reviewed by: arrowd
Approved by: arrowd (ports)
Differential Revision: https://reviews.freebsd.org/D52630
-rw-r--r-- | devel/gnulib/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/gnulib/Makefile b/devel/gnulib/Makefile index 1b6a30a1b23e..39cd08bb43bf 100644 --- a/devel/gnulib/Makefile +++ b/devel/gnulib/Makefile @@ -1,6 +1,6 @@ PORTNAME= gnulib PORTVERSION= 20140202 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://erislabs.net/ianb/projects/gnulib/ DISTNAME= ${PORTNAME}-${PORTVERSION}-stable @@ -16,6 +16,9 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/makeinfo:print/texinfo USES= cpe gmake perl5 shebangfix SHEBANG_FILES= check-module lib/uniname/gen-uninames.lisp +SHEBANG_LANG= perl clisp +clisp_OLD_CMD= /usr/local/bin/clisp +clisp_CMD= ${LOCALBASE}/bin/clisp CPE_VENDOR= gnu NO_ARCH= yes |