From d3208f26f3706070fe4b4082c2c0d49d084bc635 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Fri, 28 Sep 2012 17:26:07 +0200 Subject: plymouth fix? --- remote/tools/plymouth/build.plymouth | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/remote/tools/plymouth/build.plymouth b/remote/tools/plymouth/build.plymouth index c726b4a6..326e8331 100644 --- a/remote/tools/plymouth/build.plymouth +++ b/remote/tools/plymouth/build.plymouth @@ -23,8 +23,7 @@ build() { cd src/$VERSION ./configure --enable-systemd-integration make - [ ! -d $INIT_DIR ] && mkdir $INIT_DIR - DESTDIR="$INIT_DIR" make install + DESTDIR=$INIT_DIR make install cd - touch .built fi -- cgit v1.2.3-55-g7522 From e36d68af05bfbafb6017736dbd0d459d153b0b35 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Fri, 28 Sep 2012 17:35:17 +0200 Subject: minor --- remote/tools/plymouth/build.plymouth | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/remote/tools/plymouth/build.plymouth b/remote/tools/plymouth/build.plymouth index 326e8331..7cc7ea1b 100644 --- a/remote/tools/plymouth/build.plymouth +++ b/remote/tools/plymouth/build.plymouth @@ -8,12 +8,10 @@ fetch_source() { if [ ! -e .fetched_source ]; then # download and extract tarball [ ! -d src ] && mkdir src - cd src wget -q $URL TARBALL=`basename $URL` - tar xvf $TARBALL + tar xvf $TARBALL -C src/ rm $TARBALL - cd - touch .fetched_source fi } -- cgit v1.2.3-55-g7522