xmake: Add support install custom patches
This commit is contained in:
15
xmake.sh
15
xmake.sh
@@ -239,7 +239,20 @@ function build_target {
|
|||||||
sed -i 's/\$(INSTALL_DIR) \$(1)\/usr\/{bin,sbin}/#\$(INSTALL_DIR) \$(1)\/usr\/__bin_sbin__/g' $NTFS3G
|
sed -i 's/\$(INSTALL_DIR) \$(1)\/usr\/{bin,sbin}/#\$(INSTALL_DIR) \$(1)\/usr\/__bin_sbin__/g' $NTFS3G
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
XPATCHES=$XDIR/patches
|
||||||
|
for incfn in $XPATCHES/*.patch; do
|
||||||
|
[ ! -f "$incfn" ] && continue
|
||||||
|
inc=`patch -p1 -N -r - < "$incfn"`
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
if ! echo "$inc" | grep -q "patch detected! Skipping patch."; then
|
||||||
|
echo "Patch '$(basename $incfn)' FAILED"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
echo "Patch '$(basename $incfn)' result: OK"
|
||||||
|
done
|
||||||
|
|
||||||
OPKG_DIR=$XDIR/files/etc/opkg
|
OPKG_DIR=$XDIR/files/etc/opkg
|
||||||
if [ -d $OPKG_DIR ]; then
|
if [ -d $OPKG_DIR ]; then
|
||||||
rm -rf $OPKG_DIR
|
rm -rf $OPKG_DIR
|
||||||
|
|||||||
Reference in New Issue
Block a user