diff options
Diffstat (limited to 'volk/bootstrap')
-rwxr-xr-x | volk/bootstrap | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/volk/bootstrap b/volk/bootstrap index ff239c88c..838f03aa2 100755 --- a/volk/bootstrap +++ b/volk/bootstrap @@ -20,8 +20,14 @@ # Boston, MA 02110-1301, USA. rm -fr config.cache autom4te*.cache -cd include/volk && chmod +x volk_register.py && ./volk_register.py && cd ../.. -aclocal -I config +#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 autoconf autoheader libtoolize --automake |