Skip to content

Commit

Permalink
mono: fix native libdir path for multilib
Browse files Browse the repository at this point in the history
  • Loading branch information
niraami committed Oct 19, 2024
1 parent f4c6e27 commit bbfff4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes-mono/mono/mono-base.inc
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ do_install_append() {
${STAGING_DIR_NATIVE}${sysconfdir}/${PN} ${D}${sysconfdir}
install -d ${D}${libdir}/${PN}
for lib in ${MONOLIBS}; do
if [ -d "${STAGING_DIR_NATIVE}${libdir}/${PN}/$lib" ]; then
if [ -d "${STAGING_LIBDIR_NATIVE}/${PN}/$lib" ]; then
cp -af --no-preserve=ownership \
${STAGING_DIR_NATIVE}${libdir}/${PN}/$lib ${D}${libdir}/${PN}
${STAGING_LIBDIR_NATIVE}/${PN}/$lib ${D}${libdir}/${PN}
fi
done
# AJL - Remove mscorlib.dll.so and mcs.exe.so files copied from mono-native to the mono destination
Expand Down

0 comments on commit bbfff4f

Please sign in to comment.