ae69000001
* arduino and antiword is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
11 lines
443 B
Diff
11 lines
443 B
Diff
--- a/src/command.c 2016-03-05 22:06:06.710989576 +0000
|
|
+++ b/src/command.c 2016-03-05 22:06:36.743614116 +0000
|
|
@@ -556,7 +556,7 @@
|
|
ptydev = ttydev = _getpty(&fd, O_RDWR | O_NDELAY, 0622, 0);
|
|
if (ptydev == NULL)
|
|
goto Failed;
|
|
-#elif defined (__svr4__) || defined(__CYGWIN32__) || defined(__lnx21__)
|
|
+#elif defined (__svr4__) || defined(__CYGWIN32__) || defined(__lnx21__) || defined(__linux__)
|
|
{
|
|
extern char *ptsname();
|
|
|