diff xfce/libxfce4ui/libxfce4ui.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/libxfce4ui/libxfce4ui.sh	Mon Jul 15 20:10:00 2019 +0200
+++ b/xfce/libxfce4ui/libxfce4ui.sh	Thu Jul 18 07:26:43 2019 +0200
@@ -39,8 +39,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" \
@@ -59,6 +59,6 @@
 	rm -f $DESTDIR/lib/libxfce4ui-1.la
 	rm -f $DESTDIR/lib/libxfce4ui-2.la
 
-	popd
+	cd ..
 	rm -rf $PKGNAME-$PKGVERSION
 }