diff options
author | Jay Freeman <saurik@saurik.com> | 2014-05-13 10:34:26 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2014-05-13 10:34:26 +0000 |
commit | 85e3a5f9233e59fb4aaf96839465b94346a12616 (patch) | |
tree | 30bc037689d81b9ea4610bd6820e13bf58dbc8fe | |
parent | 96e76635da3c9990a9e3c6b7cbd6249ad54f487a (diff) |
Allow a little bit of fuzz while patching libtool.
git-svn-id: http://svn.telesphoreo.org/trunk@781 514c082c-b64e-11dc-b46d-3d985efe055d
-rwxr-xr-x | make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ export -f pkg:bin function pkg:autoconf() { for m4 in $(find -name "*.m4"); do - patch -r/dev/null "${m4}" "${PKG_BASE}/util/libtool.m4.diff" || true + patch -F 3 -r/dev/null "${m4}" "${PKG_BASE}/util/libtool.m4.diff" || true done autoconf |