pkgsrc-WIP-changes archive

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

vte: fix %m usage



Module Name:	pkgsrc-wip
Committed By:	Tobias Nygren <tnn%NetBSD.org@localhost>
Pushed By:	tnn
Date:		Mon Oct 19 20:16:59 2015 +0200
Changeset:	9ca7caccc5a0593e5b0c913dc350dcced77c6d79

Modified Files:
	vte/distinfo
Added Files:
	vte/patches/patch-src_app.vala

Log Message:
vte: fix %m usage

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=9ca7caccc5a0593e5b0c913dc350dcced77c6d79

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

diffstat:
 vte/distinfo                   |  1 +
 vte/patches/patch-src_app.vala | 13 +++++++++++++
 2 files changed, 14 insertions(+)

diffs:
diff --git a/vte/distinfo b/vte/distinfo
index a5b916b..60599c1 100644
--- a/vte/distinfo
+++ b/vte/distinfo
@@ -3,3 +3,4 @@ $NetBSD: distinfo,v 1.10 2015/06/06 15:46:31 krytarowski Exp $
 SHA1 (vte-0.40.2.tar.gz) = fa4f548032e3017e7663fa43d5f5c6ed5536913f
 RMD160 (vte-0.40.2.tar.gz) = 8a79a7f540e8d044625ae038a62824393564f948
 Size (vte-0.40.2.tar.gz) = 633056 bytes
+SHA1 (patch-src_app.vala) = cd8ff7daf6f22c3e3cc9c6535e47782e3e29fd36
diff --git a/vte/patches/patch-src_app.vala b/vte/patches/patch-src_app.vala
new file mode 100644
index 0000000..7e2a89b
--- /dev/null
+++ b/vte/patches/patch-src_app.vala
@@ -0,0 +1,13 @@
+$NetBSD$
+
+--- src/app.vala.orig	2015-04-28 21:51:21.000000000 +0000
++++ src/app.vala
+@@ -257,7 +257,7 @@ class Window : Gtk.ApplicationWindow
+ 
+     switch (pid) {
+     case -1: /* error */
+-      printerr("Error forking: %m");
++      printerr("Error forking: %s", strerror(errno));
+       break;
+     case 0: /* child */ {
+       pty.child_setup();


Home | Main Index | Thread Index | Old Index