diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-08-06 00:19:34 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-08-06 00:19:34 +0000 |
commit | f45be33f1789c7e644046c3ba3bf4c995ae7f401 (patch) | |
tree | 9069098458fa41f6e2403e5e31f95780fdc24085 /tools | |
parent | 187ec5ae199899719bd6ada4d7436847babafa9a (diff) | |
download | upstream-f45be33f1789c7e644046c3ba3bf4c995ae7f401.tar.gz upstream-f45be33f1789c7e644046c3ba3bf4c995ae7f401.tar.bz2 upstream-f45be33f1789c7e644046c3ba3bf4c995ae7f401.zip |
sed: fix compilation on FreeBSD/AMD64
SVN-Revision: 22499
Diffstat (limited to 'tools')
-rw-r--r-- | tools/sed/patches/010-amd64_freebsd_build.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/sed/patches/010-amd64_freebsd_build.patch b/tools/sed/patches/010-amd64_freebsd_build.patch new file mode 100644 index 0000000000..c40cafb1f8 --- /dev/null +++ b/tools/sed/patches/010-amd64_freebsd_build.patch @@ -0,0 +1,12 @@ +--- a/config/config.sub ++++ b/config/config.sub +@@ -380,6 +380,9 @@ case $basic_machine in + amd64) + basic_machine=x86_64-pc + ;; ++ amd64-*) ++ basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ++ ;; + amdahl) + basic_machine=580-amdahl + os=-sysv |