From ac4a2334cf292d5a131b60002753612db5c9bda2 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Wed, 29 Apr 2009 14:25:14 +0100 Subject: recipes/opkg/files/configure : fix the case where this is no splash installed. recipes/opkg/opkg*.bb : bump PR for affected recipes --- recipes/opkg/files/configure | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'recipes/opkg/files/configure') diff --git a/recipes/opkg/files/configure b/recipes/opkg/files/configure index 318ccb19c3..d5dd74dbf3 100644 --- a/recipes/opkg/files/configure +++ b/recipes/opkg/files/configure @@ -7,16 +7,18 @@ status_pulse || true fi # run configure in bg -opkg-cl configure & -PID=$! - -if [ -f /etc/default/splashfuncs ]; then +if [ -f /etc/default/splashfuncs ]; then + opkg-cl configure & + PID=$! + # while configure still running loop while test -d /proc/$PID; do # tick to splash so it doesn't time out status_tick || true sleep 1 done +else + opkg-cl configure fi # delete myself -- cgit v1.2.3