pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/pinentry-mac/files



Module Name:    pkgsrc
Committed By:   jym
Date:           Wed May 31 17:10:01 UTC 2017

Modified Files:
        pkgsrc/security/pinentry-mac/files: pinentry-mac.sh

Log Message:
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).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/pinentry-mac/files/pinentry-mac.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/pinentry-mac/files/pinentry-mac.sh
diff -u pkgsrc/security/pinentry-mac/files/pinentry-mac.sh:1.1 pkgsrc/security/pinentry-mac/files/pinentry-mac.sh:1.2
--- pkgsrc/security/pinentry-mac/files/pinentry-mac.sh:1.1      Wed May 31 12:19:17 2017
+++ pkgsrc/security/pinentry-mac/files/pinentry-mac.sh  Wed May 31 17:10:01 2017
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-open '@PINENTRY_APP_DIR@' $@
+exec '@PINENTRY_APP_DIR@/Contents/MacOS/pinentry-mac'



Home | Main Index | Thread Index | Old Index