You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using v1.0.tar.gz downloaded from the release page
On OLCF Summit (but my guess is any other system will have the same issue)
Describe the problem you're observing
Because the tarball is not a git repo, using git describe --always inside the configure.ac AC_INIT() macro causes the autoreconf step to fail.
Describe how to reproduce the problem
> ./autogen.sh
... UnifyFS autogen ...
Running libtoolize...
Running autoreconf...
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
fatal: not a git repository (or any parent up to mount point /autofs)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
configure.ac:17: error: AC_INIT should be called with package and version arguments
/usr/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
configure.ac:17: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1
autoreconf: aclocal failed with exit status: 1
Please proceed with configuring, compiling, and installing.
The text was updated successfully, but these errors were encountered:
Note that this is only for the source code tarball, the release tarball (unifyfs-1.0.tar.gz) already has a generated configure script and doesn't require running autogen.sh.
System information
Describe the problem you're observing
Because the tarball is not a git repo, using
git describe --always
inside the configure.acAC_INIT()
macro causes the autoreconf step to fail.Describe how to reproduce the problem
The text was updated successfully, but these errors were encountered: