summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjym <jym>2017-05-31 17:10:01 +0000
committerjym <jym>2017-05-31 17:10:01 +0000
commitfdc0c302f32557845075b6e582ee6e9b50040f56 (patch)
treeaec22d7404e6cc8cd4277150bc407ddc1db941b5
parentaecc2064a6437c1a1734de8664943b712c65cd7b (diff)
downloadpkgsrc-fdc0c302f32557845075b6e582ee6e9b50040f56.tar.gz
For unknown reason the program fails silently when called with open(1)
on latest Sierra. So exec the program directly instead of using open(1).
-rw-r--r--security/pinentry-mac/files/pinentry-mac.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/pinentry-mac/files/pinentry-mac.sh b/security/pinentry-mac/files/pinentry-mac.sh
index b66e11ad4d9..d426ddfa12d 100644
--- a/security/pinentry-mac/files/pinentry-mac.sh
+++ b/security/pinentry-mac/files/pinentry-mac.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-open '@PINENTRY_APP_DIR@' $@
+exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac'