diff --git a/SysBuild/guibased/raptor b/SysBuild/guibased/raptor index a1ddcd5..32ecdbf 100644 --- a/SysBuild/guibased/raptor +++ b/SysBuild/guibased/raptor @@ -82,6 +82,7 @@ mk32() { make -j $NUMCPU make -j $NUMCPU DESTDIR=$TMPROOT install make distclean + mv $TMPROOT/usr/bin/raptor-config{,-32} } mk() { @@ -98,5 +99,8 @@ mk() { } postmk() { - echo "Nothing to do for postmk()" + if [ "$MK64BIT" == "true" ]; then + mv $TMPROOT/usr/bin/raptor-config{,-64} + ln -s multiarch_wrapper $TMPROOT/usr/bin/raptor-config + fi }