summaryrefslogtreecommitdiff
path: root/~lukeshu/make-graph/make-3.82-sort-blank.patch
diff options
context:
space:
mode:
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, 0 insertions, 17 deletions
diff --git a/~lukeshu/make-graph/make-3.82-sort-blank.patch b/~lukeshu/make-graph/make-3.82-sort-blank.patch
deleted file mode 100644
index 2e73f5b7c..000000000
--- a/~lukeshu/make-graph/make-3.82-sort-blank.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-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;
- }