Skip to content

Commit

Permalink
HACK
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Oct 13, 2023
1 parent ea98611 commit 7f1faf7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ jobs:
- name: "Configure"
run: |
cd ${REPO}
dos2unix configure
#dos2unix configure
dos2unix bootstrap.sh
./bootstrap.sh
./configure CC=${CC} CFLAGS="${CFLAGS}" ${EXTRA_OPTIONS}
Expand Down
6 changes: 6 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ AC_PREREQ(2.59)

m4_define(FLINT_VERSION,m4_include([VERSION]))

echo "the flint version is FLINT_VERSION"

AC_INIT(FLINT, FLINT_VERSION, [https://github.com/flintlib/flint/issues/], flint, [https://flintlib.org/])
AC_CONFIG_AUX_DIR([config])
AC_LANG(C)
Expand Down Expand Up @@ -1013,6 +1015,10 @@ FLINT_MINOR=${tail%%.*}
tail=${tail#*.}
FLINT_PATCH=${tail%-*}

echo "FLINT_MAJOR = $FLINT_MAJOR"
echo "FLINT_MINOR = $FLINT_MINOR"
echo "FLINT_PATCH = $FLINT_PATCH"

AC_SUBST(FLINT_MAJOR)
AC_SUBST(FLINT_MINOR)
AC_SUBST(FLINT_PATCH)
Expand Down

0 comments on commit 7f1faf7

Please sign in to comment.