diff options
author | P. J. McDermott <pjm@nac.net> | 2013-06-18 20:59:42 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-06-18 20:59:42 (EDT) |
commit | 641dae2c68d73b524cce220a096119f2de56fc54 (patch) | |
tree | ec4a77b3080c14b6a1e0104981050e502b886fb4 | |
parent | 329a504d6e6a5b59a6a5004eec982683b591344d (diff) |
Fix spaces in patch file names.
GNU Patch can handle spaces between file names and dates, but BusyBox patch
requires tabs.
Fixes:
ob-applypatches: Applying patch "01_allow-more-dirs-to-be-configured.patch"...
patching file gcc/gcc.c 2013-04-25 21:16:04.893780032 -0400
patch: can't open 'gcc/gcc.c 2013-04-25 21:16:04.893780032 -0400': No such file or directory
ob-applypatches: Error: Can't apply patch "01_allow-more-dirs-to-be-configured.patch"
-rw-r--r-- | patches/01_allow-more-dirs-to-be-configured.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/patches/01_allow-more-dirs-to-be-configured.patch b/patches/01_allow-more-dirs-to-be-configured.patch index 4c06bec..4945805 100644 --- a/patches/01_allow-more-dirs-to-be-configured.patch +++ b/patches/01_allow-more-dirs-to-be-configured.patch @@ -8,8 +8,8 @@ Description: Allow more directories to be configured. From: "P. J. McDermott" <pjm@nac.net> diff -Naur src.orig/gcc/gcc.c src/gcc/gcc.c ---- src.orig/gcc/gcc.c 2013-03-08 02:25:09.000000000 -0500 -+++ src/gcc/gcc.c 2013-04-25 21:16:04.893780032 -0400 +--- src.orig/gcc/gcc.c 2013-03-08 02:25:09.000000000 -0500 ++++ src/gcc/gcc.c 2013-04-25 21:16:04.893780032 -0400 @@ -1130,6 +1130,8 @@ static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX; static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX; @@ -37,8 +37,8 @@ diff -Naur src.orig/gcc/gcc.c src/gcc/gcc.c that are lists of directory names with colons. */ diff -Naur src.orig/gcc/Makefile.in src/gcc/Makefile.in ---- src.orig/gcc/Makefile.in 2013-04-01 04:11:11.000000000 -0400 -+++ src/gcc/Makefile.in 2013-04-25 17:58:17.104382447 -0400 +--- src.orig/gcc/Makefile.in 2013-04-01 04:11:11.000000000 -0400 ++++ src/gcc/Makefile.in 2013-04-25 17:58:17.104382447 -0400 @@ -2097,6 +2097,7 @@ -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \ -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \ |