diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2019-05-26 21:10:29 +0800 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2019-05-26 21:10:29 +0800 |
commit | 486f6a0d3b1ff45aa4f9f8c7c73a3122e208a9f5 (patch) | |
tree | 3d80473308c55a58870d81f87f011b23418bb9a1 /finance | |
parent | e88c7a36edf47873989646f0835471629e4c94a6 (diff) | |
download | freebsd-ports-gnome-486f6a0d3b1ff45aa4f9f8c7c73a3122e208a9f5.tar.gz freebsd-ports-gnome-486f6a0d3b1ff45aa4f9f8c7c73a3122e208a9f5.tar.zst freebsd-ports-gnome-486f6a0d3b1ff45aa4f9f8c7c73a3122e208a9f5.zip |
finance/bitcoinnodestats: Fix wrong use of USES=shebangfix
* Spell SHEBANG_FILES correctly
* Install the scripts with INSTALL_SCRIPT instead of INSTALL_DATA to get
proper QA results.
PR: 238139
Reported by: tobik
MFH: 2019Q2
Diffstat (limited to 'finance')
-rw-r--r-- | finance/bitcoinnodestats/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/finance/bitcoinnodestats/Makefile b/finance/bitcoinnodestats/Makefile index 3a5e418f7597..3c9ea3d5f4b9 100644 --- a/finance/bitcoinnodestats/Makefile +++ b/finance/bitcoinnodestats/Makefile @@ -2,6 +2,7 @@ PORTNAME= bitcoinnodestats DISTVERSION= g20171121 +PORTREVISION= 1 CATEGORIES= finance python MAINTAINER= kai@FreeBSD.org @@ -25,15 +26,15 @@ GH_TAGNAME= 5e8772d NO_ARCH= yes NO_BUILD= yes -SHEBANGFILES= create_local_settings.py manage.py +SHEBANG_FILES= create_local_settings.py manage.py SUB_FILES= pkg-message SUB_LIST= DATADIR=${DATADIR} PYTHON_VER=${PYTHON_VER} do-install: @${MKDIR} ${STAGEDIR}${DATADIR} -.for _file in ${SHEBANGFILES} - ${INSTALL_DATA} ${WRKSRC}/${_file} ${STAGEDIR}${DATADIR} +.for _file in ${SHEBANG_FILES} + ${INSTALL_SCRIPT} ${WRKSRC}/${_file} ${STAGEDIR}${DATADIR} .endfor .for _dir in bitcoinnodestats nodedata |