From 78cd3bc89d1e9e7a670b2eb529d1791f6b43f551 Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Sun, 15 Feb 2009 17:58:10 +0100 Subject: [PATCH] grml-exec-wrapper: do not use print print is not portable. printf is, so let us use that. --- usr_bin/grml-exec-wrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr_bin/grml-exec-wrapper b/usr_bin/grml-exec-wrapper index af15d98..8159246 100755 --- a/usr_bin/grml-exec-wrapper +++ b/usr_bin/grml-exec-wrapper @@ -28,7 +28,7 @@ display_info() { if is_installed Xdialog && test -n "$DISPLAY" ; then Xdialog --title "grml-exec-wrapper" --msgbox "$1" 0 0 0 else - print "$1">&2 + printf '%s\n' "$1">&2 fi } -- 2.1.4