Fix exec command by adding the missing "$@" to pass down arguments.
Bump rev. Caught by wizd(8), thanks!
This commit is contained in:
parent
9057c9022b
commit
896b590c09
2 changed files with 3 additions and 2 deletions
|
@ -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/
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac'
|
||||
exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac' "$@"
|
||||
|
|
Loading…
Reference in a new issue