summaryrefslogtreecommitdiff
path: root/scripts/ipkg
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-09-26 08:34:18 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-09-26 08:34:18 +0000
commit25fadf0b072ea93bbe18fe51767f40c378e267b4 (patch)
tree76aab2b3cd51d5b9904356726012548d17411902 /scripts/ipkg
parentdc12314e836a8407b9a07d92e0bc9a3e316fd651 (diff)
downloadmtk-20170518-25fadf0b072ea93bbe18fe51767f40c378e267b4.zip
mtk-20170518-25fadf0b072ea93bbe18fe51767f40c378e267b4.tar.gz
mtk-20170518-25fadf0b072ea93bbe18fe51767f40c378e267b4.tar.bz2
make scripts/ipkg more portable by using printf instead of echo -n
SVN-Revision: 17729
Diffstat (limited to 'scripts/ipkg')
-rwxr-xr-xscripts/ipkg8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/ipkg b/scripts/ipkg
index 554521a..045a3fd 100755
--- a/scripts/ipkg
+++ b/scripts/ipkg
@@ -794,7 +794,7 @@ Status: install ok pending" | ipkg_status_update_sd $sd $pkg
fi
- echo -n "Unpacking $pkg..."
+ printf "Unpacking $pkg..."
set +o noglob
for file in $IPKG_TMP/$pkg/control/*; do
local base_file="`ipkg_file_part $file`"
@@ -809,7 +809,7 @@ Status: install ok pending" | ipkg_status_update_sd $sd $pkg
fi
echo "Done."
- echo -n "Configuring $pkg..."
+ printf "Configuring $pkg..."
export PKG_ROOT=$dest
if [ -x "$info_dir/$pkg.preinst" ]; then
if ! $info_dir/$pkg.preinst install; then
@@ -828,7 +828,7 @@ Status: install ok pending" | ipkg_status_update_sd $sd $pkg
local use_maintainers_conffile=
if [ -z "$FORCE_DEFAULTS" ]; then
while true; do
- echo -n "Configuration file \`$conffile'
+ printf "Configuration file \`$conffile'
==> File on system created by you or by a script.
==> File also in package provided by package maintainer.
What would you like to do about it ? Your options are:
@@ -960,7 +960,7 @@ ipkg_install_wanted() {
if [ -n "$FORCE_DEFAULTS" ]; then
echo "Installing them now."
else
- echo -n "Install them now [Y/n] ? "
+ printf "Install them now [Y/n] ? "
read response
case "$response" in
[Nn] | [Nn][Oo])