diff options
author | Josh Blum | 2011-05-09 10:45:28 -0700 |
---|---|---|
committer | Josh Blum | 2011-05-09 10:45:28 -0700 |
commit | b3a85a74862636a2168d028f3e1bbdb07107edc8 (patch) | |
tree | 6fd4a9b69686c99dc0ab3e110dd9d63e9a9256c7 /usrp2/firmware | |
parent | c40ef84defaeed0c9ec70e45a7e4019fa6d6e1b2 (diff) | |
download | gnuradio-b3a85a74862636a2168d028f3e1bbdb07107edc8.tar.gz gnuradio-b3a85a74862636a2168d028f3e1bbdb07107edc8.tar.bz2 gnuradio-b3a85a74862636a2168d028f3e1bbdb07107edc8.zip |
gnuradio: revert bootstrap changes
Its so simple, but seems to not work well on some machines.
Diffstat (limited to 'usrp2/firmware')
-rwxr-xr-x | usrp2/firmware/bootstrap | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/usrp2/firmware/bootstrap b/usrp2/firmware/bootstrap index a72eced6b..4106d4746 100755 --- a/usrp2/firmware/bootstrap +++ b/usrp2/firmware/bootstrap @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2001-2011 Free Software Foundation, Inc. +# Copyright 2001,2005 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -19,14 +19,12 @@ # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. -srcdir=$(cd $(dirname $0) ; pwd) -echo "Bootstrap'n usrp2 firmware... ${srcdir}" +rm -fr config.cache autom4te*.cache -(cd ${srcdir} ; rm -fr config.cache autom4te*.cache) -(cd ${srcdir} ; aclocal -I config) -(cd ${srcdir} ; autoconf) -(cd ${srcdir} ; autoheader) -# (cd ${srcdir} ; libtoolize --automake) -(cd ${srcdir} ; automake --add-missing -Wno-portability) +aclocal -I config +autoconf +autoheader +# libtoolize --automake +automake --add-missing -Wno-portability |