summaryrefslogtreecommitdiff
path: root/~lukeshu/make-graph/make-3.82-sort-blank.patch
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-12-23 19:01:11 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-12-23 19:01:11 -0500
commit3e0b65526ad875e77b7925091e384065218a63e0 (patch)
treeb647818b0282fd05a18a7f1e31c041d1a20cf70a /~lukeshu/make-graph/make-3.82-sort-blank.patch
parent9f78c0ab6f3d3f7de6b254848a8016a2c9d80043 (diff)
add ~lukeshu/make-graph 3.82 (GNU Make with graphviz patch)
Diffstat (limited to '~lukeshu/make-graph/make-3.82-sort-blank.patch')
-rw-r--r--~lukeshu/make-graph/make-3.82-sort-blank.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/~lukeshu/make-graph/make-3.82-sort-blank.patch b/~lukeshu/make-graph/make-3.82-sort-blank.patch
new file mode 100644
index 000000000..2e73f5b7c
--- /dev/null
+++ b/~lukeshu/make-graph/make-3.82-sort-blank.patch
@@ -0,0 +1,17 @@
+diff -urp make-3.82/function.c make-3.82-pm/function.c
+--- make-3.82/function.c 2010-07-13 03:20:39.000000000 +0200
++++ make-3.82-pm/function.c 2010-10-27 01:43:27.000000000 +0200
+@@ -1138,12 +1138,12 @@ func_sort (char *o, char **argv, const c
+ {
+ char c = *(t++);
+
+- if (! isspace ((unsigned char)c))
++ if (! isblank ((unsigned char)c))
+ continue;
+
+ ++wordi;
+
+- while (isspace ((unsigned char)*t))
++ while (isblank ((unsigned char)*t))
+ ++t;
+ }