summaryrefslogtreecommitdiffstats
path: root/abs/core/make/make-3.82-sort-blank.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-07 17:35:30 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-07 17:35:30 (GMT)
commit4fe0a91dc41e4f497a8aa5497c21799060d5fddd (patch)
tree0f5c663035712d7b6441f4c93335d9bc22cc5029 /abs/core/make/make-3.82-sort-blank.patch
parentd09de6629ad05b3ad935ac79e7ed6c7fe46e3cf2 (diff)
downloadlinhes_pkgbuild-4fe0a91dc41e4f497a8aa5497c21799060d5fddd.zip
linhes_pkgbuild-4fe0a91dc41e4f497a8aa5497c21799060d5fddd.tar.gz
linhes_pkgbuild-4fe0a91dc41e4f497a8aa5497c21799060d5fddd.tar.bz2
make 3.82
-moved to core
Diffstat (limited to 'abs/core/make/make-3.82-sort-blank.patch')
-rw-r--r--abs/core/make/make-3.82-sort-blank.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/abs/core/make/make-3.82-sort-blank.patch b/abs/core/make/make-3.82-sort-blank.patch
new file mode 100644
index 0000000..2e73f5b
--- /dev/null
+++ b/abs/core/make/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;
+ }