diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2013-05-03 20:08:29 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2013-05-03 20:08:29 +0400 |
commit | 561147bf577092ac79d6d8a52491eee28e07273c (patch) | |
tree | cee0dae05eb646fc39eecbd5ead007b7ed79df35 /debian/patches/bug30612-space.patch | |
parent | 0d66b125183a647c0c1a25a21b6e68d793c85f1d (diff) | |
download | make.old-561147bf577092ac79d6d8a52491eee28e07273c.tar.gz |
Really fix Savannah bug #30612HEADdyson/3.82-3+dyson2master
Diffstat (limited to 'debian/patches/bug30612-space.patch')
-rw-r--r-- | debian/patches/bug30612-space.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/patches/bug30612-space.patch b/debian/patches/bug30612-space.patch new file mode 100644 index 0000000..1371687 --- /dev/null +++ b/debian/patches/bug30612-space.patch @@ -0,0 +1,37 @@ +From b06b8c64a29a5ba3a8daecd829fa2f98d42cb285 Mon Sep 17 00:00:00 2001 +From: Paul Smith <psmith@gnu.org> +Date: Sun, 12 Jun 2011 16:22:04 +0000 +Subject: Fix another error related to whitespace handling in archives. + +Newer version of VMS support strncasecmp() so update the config.h. +--- +(limited to 'read.c') + +diff --git a/read.c b/read.c +index c87d4a7..b012094 100644 +--- a/read.c ++++ b/read.c +@@ -3044,16 +3044,16 @@ parse_file_seq (char **stringp, unsigned int size, int stopchar, + nlen -= (n + 1) - tp; + tp = n + 1; + +- /* If we have just "lib(", part of something like +- "lib( a b)", go to the next item. */ +- if (! nlen) +- continue; +- + /* We can stop looking now. */ + break; + } + } + while (*e != '\0'); ++ ++ /* If we have just "lib(", part of something like "lib( a b)", ++ go to the next item. */ ++ if (! nlen) ++ continue; + } + } + +-- +cgit v0.9.0.2 |