summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBenedikt Meurer <benedikt.meurer@googlemail.com>2010-12-19 11:49:21 +0100
committerBenedikt Meurer <benedikt.meurer@googlemail.com>2010-12-19 11:49:21 +0100
commit4dc82ec2af7cab940cd700be6cb041468dc86338 (patch)
treea81d34a89a44576ca4ced5804ceb3bf34715b7e0 /scripts
parent20e7901a9fef7ea229fa3c55f8875509c795c391 (diff)
downloadxfce4-dev-tools-4dc82ec2af7cab940cd700be6cb041468dc86338.tar.gz
Use printf instead of echo -n.
/bin/sh does not support the -n option for echo. Use printf instead, which is independent of the shell.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/xdt-autogen.in.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/xdt-autogen.in.in b/scripts/xdt-autogen.in.in
index 2d14ef8..a2ef933 100644
--- a/scripts/xdt-autogen.in.in
+++ b/scripts/xdt-autogen.in.in
@@ -2,7 +2,7 @@
#
# $Id$
#
-# Copyright (c) 2002-2006
+# Copyright (c) 2002-2010
# The Xfce development team. All rights reserved.
#
# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
@@ -93,7 +93,7 @@ EOF
exit 1
fi
- test "x$configure_ac_file" != "x" && echo -n "$configure_ac_file "
+ test "x$configure_ac_file" != "x" && printf "%s" "$configure_ac_file "
subdirs=`parse_configure_subdirs ${configure_ac_file}`
for subdir in $subdirs; do
@@ -114,7 +114,7 @@ lookup_configure_ac_in_files()
configure_ac_in_file="$1/configure.in.in";
fi
- test "x$configure_ac_in_file" != "x" && echo -n "$configure_ac_in_file "
+ test "x$configure_ac_in_file" != "x" && printf "%s" "$configure_ac_in_file "
subdirs=`parse_configure_subdirs ${configure_ac_in_file}`
for subdir in $subdirs; do