[arch-projects] [devtools][PATCH 1/2] Replace backticks by $() and add missing quotes

Eric Bélanger snowmaniscool at gmail.com
Thu Jun 23 19:45:38 EDT 2011


Signed-off-by: Eric Bélanger <snowmaniscool at gmail.com>
---
 checkpkg |   18 +++++++++---------
 lddd     |    4 ++--
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/checkpkg b/checkpkg
index 01c921e..f8867bd 100755
--- a/checkpkg
+++ b/checkpkg
@@ -47,16 +47,16 @@ for _pkgname in ${pkgname[@]}; do
 		exit 1
 	fi
 
-	tmp=`pacman -Spdd --noconfirm $_pkgname`
+	tmp=$(pacman -Spdd --noconfirm $_pkgname)
 
 	if [ $? -ne 0 ]; then
 		echo "Couldn't download previous package for $_pkgname."
 		exit 1
 	fi
 
-	pkgurl=`echo $tmp | rev | cut -d ' ' -f 1 | rev`
+	pkgurl=$(echo $tmp | rev | cut -d ' ' -f 1 | rev)
 
-	oldpkg=`strip_url $pkgurl`
+	oldpkg=$(strip_url $pkgurl)
 
 	if [ "$(basename $oldpkg)" = "$(basename $pkgfile)" ]; then
 		echo "The built package ($_pkgname) is the one in the repo right now!"
@@ -65,11 +65,11 @@ for _pkgname in ${pkgname[@]}; do
 
 	if [ ! -f $oldpkg ]; then
 		if echo $pkgurl | grep '^file:///' > /dev/null 2>&1; then
-			cp `echo $pkgurl | sed 's#^file://##'` .
-		elif [ -f $PKGDEST/$oldpkg ]; then
-			cp $PKGDEST/$oldpkg .
-		elif [ -f $STARTDIR/$oldpkg ]; then
-			cp $STARTDIR/$oldpkg .
+			cp $(echo $pkgurl | sed 's#^file://##') .
+		elif [ -f "$PKGDEST/$oldpkg" ]; then
+			cp "$PKGDEST/$oldpkg" .
+		elif [ -f "$STARTDIR/$oldpkg" ]; then
+			cp "$STARTDIR/$oldpkg" .
 		else
 			wget --quiet $pkgurl
 		fi
@@ -87,7 +87,7 @@ for _pkgname in ${pkgname[@]}; do
 		mkdir -p pkg
 		cd pkg
 		bsdtar xf ../"$pkgfile" > /dev/null
-		for i in `diff ../filelist-$_pkgname-old ../filelist-$_pkgname | grep \> | grep \.so | awk '{print $2}'`; do
+		for i in $(diff ../filelist-$_pkgname-old ../filelist-$_pkgname | grep \> | grep \.so | awk '{print $2}'); do
 			echo -n "${i}: "
 			objdump -p $i | grep SONAME
 		done
diff --git a/lddd b/lddd
index 643782c..1bd69a8 100755
--- a/lddd
+++ b/lddd
@@ -25,9 +25,9 @@ for tree in $PATH $libdirs $extras; do
 	-name '*.mcopclass' ! -name '*.mcoptype')
 	IFS=$ifs
 	for i in $files; do
-		if [ `file $i | grep -c 'ELF'` -ne 0 ]; then
+		if [ $(file $i | grep -c 'ELF') -ne 0 ]; then
 			#  Is an ELF binary.
-			if [ `ldd $i 2>/dev/null | grep -c 'not found'` -ne 0 ]; then
+			if [ $(ldd $i 2>/dev/null | grep -c 'not found') -ne 0 ]; then
 				#  Missing lib.
 				echo "$i:" >> $TEMPDIR/raw.txt
 				ldd $i 2>/dev/null | grep 'not found' >> $TEMPDIR/raw.txt
-- 
1.7.5.4



More information about the arch-projects mailing list