diff options
author | jym <jym@pkgsrc.org> | 2017-05-31 21:30:15 +0000 |
---|---|---|
committer | jym <jym@pkgsrc.org> | 2017-05-31 21:30:15 +0000 |
commit | cbfc0ac73d24d2eaa8aa7358a7817c1e9bdd9b7e (patch) | |
tree | a14fd93dbbeff35fc3ff37bee01b15d09b9f7468 /security | |
parent | c1e3abab91af7b93466fbe513fa3c2263ea76cde (diff) | |
download | pkgsrc-cbfc0ac73d24d2eaa8aa7358a7817c1e9bdd9b7e.tar.gz |
Fix exec command by adding the missing "$@" to pass down arguments.
Bump rev.
Caught by wizd(8), thanks!
Diffstat (limited to 'security')
-rw-r--r-- | security/pinentry-mac/Makefile | 3 | ||||
-rw-r--r-- | security/pinentry-mac/files/pinentry-mac.sh | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/security/pinentry-mac/Makefile b/security/pinentry-mac/Makefile index b9d6a695b33..843d1dfdcab 100644 --- a/security/pinentry-mac/Makefile +++ b/security/pinentry-mac/Makefile @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.1 2017/05/31 12:19:16 jym Exp $ +# $NetBSD: Makefile,v 1.2 2017/05/31 21:30:15 jym Exp $ DISTNAME= pinentry-mac-${PINENTRY_VERSION} MASTER_SITES= ${MASTER_SITE_GITHUB:=GPGTools/} PINENTRY_VERSION=0.9.4 GITHUB_TAG= v${PKGVERSION_NOREV} EXTRACT_SUFX= .zip +PKGREVISION= 1 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/GPGTools/pinentry-mac/ diff --git a/security/pinentry-mac/files/pinentry-mac.sh b/security/pinentry-mac/files/pinentry-mac.sh index d426ddfa12d..766d66519ed 100644 --- a/security/pinentry-mac/files/pinentry-mac.sh +++ b/security/pinentry-mac/files/pinentry-mac.sh @@ -1,3 +1,3 @@ #!/bin/sh -exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac' +exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac' "$@" |