summaryrefslogtreecommitdiffstats
path: root/bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff
diff options
context:
space:
mode:
authortakeshi_hoshina <takeshi_hoshina@mail.toyota.co.jp>2020-11-02 11:07:33 +0900
committertakeshi_hoshina <takeshi_hoshina@mail.toyota.co.jp>2020-11-02 11:07:33 +0900
commit1c7d6584a7811b7785ae5c1e378f14b5ba0971cf (patch)
treecd70a267a5ef105ba32f200aa088e281fbd85747 /bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff
parent4204309872da5cb401cbb2729d9e2d4869a87f42 (diff)
recipes
Diffstat (limited to 'bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff')
-rw-r--r--bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff21
1 files changed, 0 insertions, 21 deletions
diff --git a/bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff b/bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff
deleted file mode 100644
index 36142c47..00000000
--- a/bsp/meta-ti/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur a/packages/gnu/targets/ITarget.xs b/packages/gnu/targets/ITarget.xs
---- a/packages/gnu/targets/ITarget.xs 2011-08-06 13:24:44.000000000 +0200
-+++ b/packages/gnu/targets/ITarget.xs 2011-08-06 13:23:37.000000000 +0200
-@@ -251,7 +251,7 @@
-
- function askLd(target)
- {
-- var ldCmd = target.rootDir + "/" + target.GCCTARG + "/bin/ld";
-+ var ldCmd = target.rootDir + "/" + target.GCCTARG + "-ld";
- /* If the ld executable cannot be found, and the prefix is not used,
- * it's probably a misspelled directory path.
- */
-@@ -486,7 +486,7 @@
- tool2cmd["link"] = cmd;
-
- /* define the ar command template */
-- cmd = prefix + target.ar.cmd
-+ cmd = prefix + target.GCCTARG + "-ar"
- + " $(AROPTS_P) " + target.ar.opts
- + " $@ $(AROPTS_S) $(aropts) $(files)";
- tool2cmd["ar"] = cmd;