From 0378d29c65dfc86ab73f1d7bce2e05b279faeaca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Fri, 10 Oct 2014 11:00:51 +0200 Subject: [PATCH] Update common.sh --- common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common.sh b/common.sh index b96dace878..688a41caed 100644 --- a/common.sh +++ b/common.sh @@ -56,9 +56,6 @@ if [[ $LINUXSOURCE == "linux-sunxi" ]] ; then if [ -z "$(patch --dry-run -t -p1 < $SRC/lib/patch/bananagmac.patch | grep previ)" ]; then patch --batch -N -p1 < $SRC/lib/patch/bananagmac.patch fi - if [ -z "$(patch --dry-run -t -p1 < $SRC/lib/patch/bananafbtft.patch | grep previ)" ]; then - patch --batch -N -p1 < $SRC/lib/patch/bananafbtft.patch - fi fi # compile sunxi tools compile_sunxi_tools @@ -126,6 +123,9 @@ cd $DEST/$LINUXSOURCE if [ -z "$(patch --dry-run -t -p1 < $SRC/lib/patch/small_lcd_drivers.patch | grep previ)" ]; then patch -p1 < $SRC/lib/patch/small_lcd_drivers.patch fi +if [ -z "$(patch --dry-run -t -p1 < $SRC/lib/patch/bananafbtft.patch | grep previ)" ]; then + patch --batch -N -p1 < $SRC/lib/patch/bananafbtft.patch +fi }