diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 15:13:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 16:07:23 +0100 |
commit | 70a1c1e26f0dac32279596dfb62d9aae864dbd37 (patch) | |
tree | ff10ef3533dfec06232468a49237e3626d357978 /meta/recipes-devtools | |
parent | 68a11a80051823fb158bb56d2390c40a4824656d (diff) | |
download | poky-70a1c1e26f0dac32279596dfb62d9aae864dbd37.tar.gz |
apt-native: Drop obsolete symlinks
Apt no longer uses GLIBC_VER and LIBSTDCPP_VER variables nor appears
to need these odd symlinks. The variables expand to empty enties
which then create symlinks which loop back on themselves.
To fix, drop the obsolete code.
(From OE-Core rev: 8c73bb7949656d91f138c087b9d261cdce90a94b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/apt/apt-native.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/recipes-devtools/apt/apt-native.inc b/meta/recipes-devtools/apt/apt-native.inc index 567eb0ca73..27cc9ff0b5 100644 --- a/meta/recipes-devtools/apt/apt-native.inc +++ b/meta/recipes-devtools/apt/apt-native.inc | |||
@@ -47,12 +47,8 @@ do_install_base () { | |||
47 | 47 | ||
48 | oe_libinstall -so -C bin libapt-private ${D}${libdir}/ | 48 | oe_libinstall -so -C bin libapt-private ${D}${libdir}/ |
49 | 49 | ||
50 | eval `cat environment.mak | grep ^GLIBC_VER | sed -e's, = ,=,'` | ||
51 | eval `cat environment.mak | grep ^LIBSTDCPP_VER | sed -e's, = ,=,'` | ||
52 | oe_libinstall -so -C bin libapt-pkg$GLIBC_VER$LIBSTDCPP_VER ${D}${libdir}/ | 50 | oe_libinstall -so -C bin libapt-pkg$GLIBC_VER$LIBSTDCPP_VER ${D}${libdir}/ |
53 | ln -sf libapt-pkg$GLIBC_VER$LIBSTDCPP_VER.so ${D}${libdir}/libapt-pkg.so | ||
54 | oe_libinstall -so -C bin libapt-inst$GLIBC_VER$LIBSTDCPP_VER ${D}${libdir}/ | 51 | oe_libinstall -so -C bin libapt-inst$GLIBC_VER$LIBSTDCPP_VER ${D}${libdir}/ |
55 | ln -sf libapt-inst$GLIBC_VER$LIBSTDCPP_VER.so ${D}${libdir}/libapt-inst.so | ||
56 | 52 | ||
57 | install -d ${D}${libdir}/apt/methods | 53 | install -d ${D}${libdir}/apt/methods |
58 | install -m 0755 bin/methods/* ${D}${libdir}/apt/methods/ | 54 | install -m 0755 bin/methods/* ${D}${libdir}/apt/methods/ |