Revision 9d24f128993fab182af3b23215a10bcf5a63fae3 authored by Clément Pernet on 24 March 2021, 14:37:13 UTC, committed by GitHub on 24 March 2021, 14:37:13 UTC
* add some const tags, which are needed

* take OMPFLAGS from environment

See https://github.com/linbox-team/fflas-ffpack/issues/309

* Revert "add some const tags, which are needed"

This reverts commit 5e0a0d9d24f7f3dc7bed05126532cfdc5e605b15.

Co-authored-by: Daniel R. Grayson <dan@math.uiuc.edu>
Co-authored-by: Mahrud Sayrafi <mahrud@berkeley.edu>
1 parent 05443b2
Raw File
autogen.sh
#!/bin/sh -ex

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

# Recover command line, with double-quotes
CMDLINE=""
for arg in "$@"
  do
  WHO="`echo $arg | cut -d'=' -f1`"
  WHAT="`echo $arg | cut -s -d'=' -f2`"
  if test "x$WHAT" = "x"; then
      CMDLINE="$CMDLINE $WHO"
  else
      CMDLINE="$CMDLINE $WHO=\"$WHAT\""
  fi
done

echo  "$0 $CMDLINE" > $srcdir/autogen.status
chmod +x $srcdir/autogen.status

# run autoconf, libtoolize, automake, etc.
autoreconf -vif $srcdir

# run configure script
if test x$NOCONFIGURE = x; then
	$srcdir/configure "$@"
fi
back to top