Index: ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postinst
===================================================================
--- ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postinst	(revision 23247)
+++ ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postinst	(revision 23248)
@@ -14,13 +14,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]"
 }
 
