diff options
author | Jay Freeman <saurik@saurik.com> | 2009-08-15 09:09:43 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2009-08-15 09:09:43 +0000 |
commit | eea19f0839038b57bd63dd7f0083ee4d102ec458 (patch) | |
tree | beda40ba61b44671d763da42efdfb5960ea2fff2 /data/odcctools/usrbin.diff | |
parent | 9f7df9aa2a95a1596149ca5d98aa695ad203d449 (diff) |
Various things I forgot to commit.
git-svn-id: http://svn.telesphoreo.org/trunk@674 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/odcctools/usrbin.diff')
-rw-r--r-- | data/odcctools/usrbin.diff | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data/odcctools/usrbin.diff b/data/odcctools/usrbin.diff new file mode 100644 index 000000000..e5629d873 --- /dev/null +++ b/data/odcctools/usrbin.diff @@ -0,0 +1,32 @@ +diff -ru odcctools-286/as/driver.c odcctools-286+iPhone/as/driver.c +--- odcctools-286/as/driver.c 2008-07-24 19:20:04.000000000 +0000 ++++ odcctools-286+iPhone/as/driver.c 2009-06-30 03:46:53.000000000 +0000 +@@ -31,16 +31,16 @@ + const char *LIB = + #if defined(__OPENSTEP__) || defined(__HERA__) || \ + defined(__GONZO_BUNSEN_BEAKER__) || defined(__KODIAK__) +- "../libexec/"; ++ "libexec/"; + #else +- "../libexec/gcc/darwin/"; ++ "libexec/gcc/darwin/"; + #endif + const char *LOCALLIB = + #if defined(__OPENSTEP__) || defined(__HERA__) || \ + defined(__GONZO_BUNSEN_BEAKER__) || defined(__KODIAK__) +- "../local/libexec/"; ++ "local/libexec/"; + #else +- "../local/libexec/gcc/darwin/"; ++ "local/libexec/gcc/darwin/"; + #endif + const char *AS = "/as"; + +@@ -73,6 +73,7 @@ + p = rindex(prefix, '/'); + if(p != NULL) + p[1] = '\0'; ++ prefix = "/usr/"; + /* + * Process the assembler flags exactly like the assembler would (except + * let the assembler complain about multiple flags, bad combinations of |