Summary
Description: Unnamed repository; edit this file 'description' to name the repository.
Last Change: Wed 4/10/13 13:00
Recent Commits
>
--git a/Ubuntu/ChangeLog b/Ubuntu/ChangeLog
index 9b7eceb..c4e28d6 100755
--- a/Ubuntu/ChangeLog
+++ b/Ubuntu/ChangeLog
@@ -2,6 +2,7 @@
* ati-packager.sh:
- Correct typo with space in dry run
- When running as root, launch commands with sh -c
+ - Wrap commands launched as root in ""
2008-08-20 Mario Limonciello <superm1@ubuntu.com>
* dists/intrepid/control:
diff --git a/Ubuntu/ati-packager.sh b/Ubuntu/ati-packager.sh
index 715d48f..2b7350b 100755
--- a/Ubuntu/ati-packager.sh
+++ b/Ubuntu/ati-packager.sh
@@ -71,7 +71,7 @@ EOF
$ROOT "sh -c '/usr/sbin/synaptic --set-selections --non-interactive --hide-main-window < $TEMPFILE'"
rm $TEMPFILE -f
else
- $ROOT apt-get -y install dpkg-dev
+ $ROOT "apt-get -y install dpkg-dev"
fi
#do a check again in case we have failed here
if [ ! -x /usr/bin/dpkg-checkbuilddeps ]; then
@@ -97,7 +97,7 @@ EOF
$ROOT "sh -c '/usr/sbin/synaptic --set-selections --non-interactive --hide-main-window < $TEMPFILE'"
rm $TEMPFILE -f
else
- $ROOT apt-get -y install $missing_dependencies
+ $ROOT "apt-get -y install $missing_dependencies"
fi
#do a check again, abort if we still have some not installed
missing_dependencies=$(dpkg-checkbuilddeps packages/Ubuntu/dists/$release/control 2>&1 | awk -F: '{ print $3 }' | sed 's/([^)]*)//g' | sed 's/|\s[^\s]*//g')
@@ -145,7 +145,7 @@ EOF
$ROOT "sh -c '/usr/sbin/synaptic --set-selections --non-interactive --hide-main-window < $TEMPFILE'"
rm $TEMPFILE -f
else
- $ROOT apt-get -y install dkms
+ $ROOT "apt-get -y install dkms"
fi
else
echo "We would have installed DKMS here"
<
Copyright © 2013 by Phoronix Media