Commit 95fe2739 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-install: add options support during cross install

parent 15dcd7af
...@@ -296,7 +296,7 @@ __epm_check_if_try_install_deb() ...@@ -296,7 +296,7 @@ __epm_check_if_try_install_deb()
showcmd_store_output alien -r -k --scripts "$pkg" || fatal showcmd_store_output alien -r -k --scripts "$pkg" || fatal
local RPMCONVERTED=$(grep "rpm generated" $RC_STDOUT | sed -e "s| generated||g") local RPMCONVERTED=$(grep "rpm generated" $RC_STDOUT | sed -e "s| generated||g")
clean_store_output clean_store_output
epm install $RPMCONVERTED docmd epm install $force $nodeps $RPMCONVERTED
done done
rm -f $TDIR/* rm -f $TDIR/*
rmdir $TDIR/ rmdir $TDIR/
...@@ -326,7 +326,7 @@ __epm_check_if_try_install_rpm() ...@@ -326,7 +326,7 @@ __epm_check_if_try_install_rpm()
showcmd_store_output fakeroot alien -d -k --scripts "$pkg" showcmd_store_output fakeroot alien -d -k --scripts "$pkg"
local DEBCONVERTED=$(grep "deb generated" $RC_STDOUT | sed -e "s| generated||g") local DEBCONVERTED=$(grep "deb generated" $RC_STDOUT | sed -e "s| generated||g")
clean_store_output clean_store_output
epm install $DEBCONVERTED docmd epm install $force $nodeps $DEBCONVERTED
done done
rm -f $TDIR/* rm -f $TDIR/*
rmdir $TDIR/ rmdir $TDIR/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment