diff options
Diffstat (limited to 'meta/recipes-devtools/binutils')
-rw-r--r-- | meta/recipes-devtools/binutils/binutils.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-devtools/binutils/binutils.inc b/meta/recipes-devtools/binutils/binutils.inc index d9e859ef2b..882fe7b5cb 100644 --- a/meta/recipes-devtools/binutils/binutils.inc +++ b/meta/recipes-devtools/binutils/binutils.inc | |||
@@ -110,7 +110,7 @@ do_install () { | |||
110 | 110 | ||
111 | # Symlinks for ease of running these on the native target | 111 | # Symlinks for ease of running these on the native target |
112 | for p in ${TARGET_SYS}-* ; do | 112 | for p in ${TARGET_SYS}-* ; do |
113 | ln -sf $p `echo $p | sed -e s,${TARGET_SYS}-,,` | 113 | ln -sf $p `echo $p | sed -e s,${TARGET_PREFIX},,` |
114 | done | 114 | done |
115 | 115 | ||
116 | rm ${D}${bindir}/ar ${D}${bindir}/strings | 116 | rm ${D}${bindir}/ar ${D}${bindir}/strings |
@@ -139,11 +139,11 @@ do_install_virtclass-native () { | |||
139 | } | 139 | } |
140 | 140 | ||
141 | pkg_postinst_${PN}-symlinks () { | 141 | pkg_postinst_${PN}-symlinks () { |
142 | update-alternatives --install ${bindir}/ar ar ${TARGET_SYS}-ar 100 | 142 | update-alternatives --install ${bindir}/ar ar ${TARGET_PREFIX}ar 100 |
143 | update-alternatives --install ${bindir}/strings strings ${TARGET_SYS}-strings 100 | 143 | update-alternatives --install ${bindir}/strings strings ${TARGET_PREFIX}strings 100 |
144 | } | 144 | } |
145 | 145 | ||
146 | pkg_prerm_${PN}-symlinks () { | 146 | pkg_prerm_${PN}-symlinks () { |
147 | update-alternatives --remove ar ${TARGET_SYS}-ar | 147 | update-alternatives --remove ar ${TARGET_PREFIX}ar |
148 | update-alternatives --remove strings ${TARGET_SYS}-strings | 148 | update-alternatives --remove strings ${TARGET_PREFIX}strings |
149 | } | 149 | } |