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 /volk/bootstrap | |
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 'volk/bootstrap')
-rwxr-xr-x | volk/bootstrap | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/volk/bootstrap b/volk/bootstrap index b11506750..a7fb78ac5 100755 --- a/volk/bootstrap +++ b/volk/bootstrap @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2001-2011 Free Software Foundation, Inc. +# Copyright 2001,2005,2008 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -18,19 +18,14 @@ # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. +rm -fr config.cache autom4te*.cache -srcdir=$(cd $(dirname $0) ; pwd) -gendir=${srcdir}/gen +python -B gen/volk_register.py +mv gen/lib/Makefile.am lib/ -echo "Bootstrap'n volk... ${srcdir}" - -python -B ${srcdir}/gen/volk_register.py -mv ${gendir}/lib/Makefile.am ${srcdir}/lib/ - -(cd ${srcdir} ; rm -fr config.cache autom4te*.cache) -(cd ${srcdir} ; aclocal -I config -I ${gendir}/config) -(cd ${srcdir} ; autoconf) -(cd ${srcdir} ; autoheader) -(cd ${srcdir} ; libtoolize --automake) -(cd ${srcdir} ; automake --add-missing -Wno-portability -Wno-override -Wnone) +aclocal -I config -I gen/config +autoconf +autoheader +libtoolize --automake +automake --add-missing -Wno-portability -Wno-override -Wnone |