prism3-suppot: fix error in load script
authorKoen Kooi <koen@openembedded.org>
Sat, 20 Jan 2007 19:22:20 +0000 (19:22 +0000)
committerKoen Kooi <koen@openembedded.org>
Sat, 20 Jan 2007 19:22:20 +0000 (19:22 +0000)
packages/prism3-support/files/hostap-fw-load
packages/prism3-support/prism3-support_1.0.0.bb

index 707030c..d0a002b 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 # dont handle non-wireless interfaces 
-if [ -n `cat /proc/net/wireless|grep $IFACE` ]; then 
+if [ -n "`cat /proc/net/wireless|grep $IFACE`" ]; then 
     exit 0 
 fi 
                                                        
@@ -23,4 +23,4 @@ fi
   
 # lets hope that run-parts obeys the order :D
 
-exit 0
\ No newline at end of file
+exit 0
index b3c00e4..88623a4 100644 (file)
@@ -4,7 +4,7 @@ LICENSE = "GPL"
 DEPENDS = "prism3-firmware hostap-utils"
 RDEPENDS = "prism3-firmware hostap-utils"
 PACKAGE_ARCH = "all"
-PR = "r3"
+PR = "r4"
 
 SRC_URI = "file://hostap-fw-load"