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:06:29 +0100 |
commit | 8c73bb7949656d91f138c087b9d261cdce90a94b (patch) | |
tree | a5eef0fc0aa2374c19c349ce72e4c68bd192f1c0 /meta/recipes-devtools/apt | |
parent | d589777a4d423b1f0c9953900bd79772d15ee4af (diff) | |
download | openembedded-core-8c73bb7949656d91f138c087b9d261cdce90a94b.tar.gz openembedded-core-8c73bb7949656d91f138c087b9d261cdce90a94b.tar.bz2 openembedded-core-8c73bb7949656d91f138c087b9d261cdce90a94b.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/apt')
-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 () { oe_libinstall -so -C bin libapt-private ${D}${libdir}/ - eval `cat environment.mak | grep ^GLIBC_VER | sed -e's, = ,=,'` - eval `cat environment.mak | grep ^LIBSTDCPP_VER | sed -e's, = ,=,'` oe_libinstall -so -C bin libapt-pkg$GLIBC_VER$LIBSTDCPP_VER ${D}${libdir}/ - ln -sf libapt-pkg$GLIBC_VER$LIBSTDCPP_VER.so ${D}${libdir}/libapt-pkg.so oe_libinstall -so -C bin libapt-inst$GLIBC_VER$LIBSTDCPP_VER ${D}${libdir}/ - ln -sf libapt-inst$GLIBC_VER$LIBSTDCPP_VER.so ${D}${libdir}/libapt-inst.so install -d ${D}${libdir}/apt/methods install -m 0755 bin/methods/* ${D}${libdir}/apt/methods/ |