diff xfce/xfconf/xfconf.sh @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents bad483aace64
children b0fd9c97761e
line wrap: on
line diff
--- a/xfce/xfconf/xfconf.sh	Mon Jul 15 20:10:00 2019 +0200
+++ b/xfce/xfconf/xfconf.sh	Thu Jul 18 07:26:43 2019 +0200
@@ -36,8 +36,8 @@
 build()
 {
 	rm -rf $PKGNAME-$PKGVERSION
-	tar xvaf $PKGNAME-$PKGVERSION.tar.bz2
-	pushd $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.bz2
+	cd $PKGNAME-$PKGVERSION
 
 	CC="$CC" \
 	CFLAGS="$CFLAGS" \
@@ -53,6 +53,6 @@
 	make install DESTDIR=$DESTDIR itlocaledir=/share/locale
 	rm -f $DESTDIR/lib/libxfconf-0.la
 
-	popd
+	cd ..
 	rm -rf $PKGNAME-$PKGVERSION
 }