add missing dependencies from some components.
authorgdt <gdt@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 16 Feb 2008 18:47:57 +0000 (18:47 +0000)
committergdt <gdt@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 16 Feb 2008 18:47:57 +0000 (18:47 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7719 221aa14e-8319-0410-a670-987f0aec2ac5

README.components

index ba8cf84789661a1e3904567daf3b5f3f645e2869..eb72b1d6fbd873d86b011156b545d8b939e307bd 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
  
-# $Id:$
+# $Id$
 
 # Copyright 2008 Free Software Foundation.
 #
@@ -27,7 +27,9 @@ echo -n "README.components START "; date
 # Avoid using rm -rf with $PREFIX, which could be /.  Make a backup of
 # the old prefix.
 sudo rm -rf $PREFIX.old
-sudo mv $PREFIX $PREFIX.old
+if [ -d $PREFIX ]; then
+    sudo mv $PREFIX $PREFIX.old
+fi
 rm -rf BUILD.*
 
 # Bootstrap just once, rather than once per module.
@@ -73,12 +75,12 @@ CONF_ENABLE_ARGS="
 --with-omnithread%--enable-pmt
 --with-omnithread%--with-pmt%--enable-mblock
 --with-omnithread%--enable-gnuradio-core
---with-omnithread%--enable-usrp
+--with-omnithread%--with-pmt%--with-mblock%--enable-usrp
 --with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--with-usrp%--enable-gr-usrp
 --with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--enable-gr-audio-oss
 --with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--enable-gr-atsc
 --with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--enable-gr-wxgui
---with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--enable-gr-utils
+--with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--with-usrp%with-gr-wxgui%--enable-gr-utils
 --with-omnithread%--with-gnuradio-core%--with-pmt%--with-mblock%--enable-gnuradio-examples
 "
 
@@ -96,8 +98,7 @@ CONF_DISABLE_ARGS="
 --enable-gr-sounder
 "
 
-# start at 1 to reserve 0 for "./README.components > BUILD.000 2>&1 &" 
-seq=1
+seq=0
 for arg in $CONF_ENABLE_ARGS; do
 
     # Convert sequence numbers and arguments to usable values.