Index: ipk/source.sh4/titanswapskins_tobayer01/CONTROL/prerm
===================================================================
--- ipk/source.sh4/titanswapskins_tobayer01/CONTROL/prerm	(revision 23247)
+++ ipk/source.sh4/titanswapskins_tobayer01/CONTROL/prerm	(revision 23248)
@@ -11,13 +11,12 @@
 ### FUNCTIONS ###
 
-RES_COL=60									# column number to place the status message
-MOVE_TO_COL="echo -en \\033[${RES_COL}G"	# command to move to the configured column number
+RES_COL=60									# column number to place the status
 
-echo_success() {							# function to print the SUCCESS status
-	$MOVE_TO_COL; echo -n "[  OK  ]"; echo
+echo_success() {							# function to print the OK status
+	printf "%-${RES_COL}s%s\n" "$1" "[  OK  ]"
 }
 
-echo_failure() {
-	$MOVE_TO_COL; echo -n "[FAILED]"; echo	# function to print the FAILED status message
+echo_failure() {							# function to print the FAILED status
+	printf "%-${RES_COL}s%s\n" "$1" "[FAILED]"
 }
 
@@ -32,6 +31,6 @@
 
 
-echo -n "Removing $plugin..."
-echo_success
+msg="Removing $plugin..."
+echo_success "$msg"
 
 exit 0
