summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Blum2011-09-17 10:52:42 -0400
committerJosh Blum2011-09-17 10:52:42 -0400
commitcdc6339e5acef2755f25a92bd4c2587df9a75619 (patch)
treedee4b0c59acb16b8bdb268c54ce6dcc9bac7550c
parente067d22c9363fe20e01b8bc5df0725f108ee4e81 (diff)
downloadgnuradio-cdc6339e5acef2755f25a92bd4c2587df9a75619.tar.gz
gnuradio-cdc6339e5acef2755f25a92bd4c2587df9a75619.tar.bz2
gnuradio-cdc6339e5acef2755f25a92bd4c2587df9a75619.zip
volk: alternative to -B that wont break on python 2.5
-rwxr-xr-xvolk/bootstrap6
1 files changed, 5 insertions, 1 deletions
diff --git a/volk/bootstrap b/volk/bootstrap
index a7fb78ac5..1afd49277 100755
--- a/volk/bootstrap
+++ b/volk/bootstrap
@@ -20,7 +20,11 @@
# Boston, MA 02110-1301, USA.
rm -fr config.cache autom4te*.cache
-python -B gen/volk_register.py
+#alternative to -B that wont break on python 2.5
+PYTHONDONTWRITEBYTECODE=1
+export PYTHONDONTWRITEBYTECODE
+
+python gen/volk_register.py
mv gen/lib/Makefile.am lib/
aclocal -I config -I gen/config