https://github.com/Singular/Sources
Raw File
Tip revision: 35c6e2c47bae1f858ec6f4a0cdab911b80a1c383 authored by Hans Schoenemann on 22 January 2021, 14:55:14 UTC
fix: map Z, Zn ->Zp, mpz_z ->Zp
Tip revision: 35c6e2c
autogen.sh
#! /bin/sh
set -e

cd `dirname "$0"`

# -d --warnings=all
autoreconf  -v -f -i
find . -name configure -exec sed -i -e 's/\"-g -O2\"/\"-g\"/g' {} \; -exec chmod +x {} \; -print
sed -i -e 's/echo .bundle/echo .so/g' libpolys/configure
sed -i -e 's/echo .bundle/echo .so/g' configure
touch */configure */configure.ac */aclocal.m4 */configure */Makefile.am */Makefile.in */_config.h.in configure aclocal.m4 Makefile.am Makefile.in _config.h.in

cd -

back to top