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
Commit fe705b8 forced autoreconf to always create symlinks, but some deficient filesystems,
cannot create them, and autoreconf fails on a linux VM where the git repository is on vboxfs.
I added an ugly workaround to autogen.sh, more or less doing
do_symlink=
ln -s xxx xxx-link > /dev/null 2>&1
RC=$?
if [ $RC -eq 0 ]; then
do_symlink=--symlink
fi
# clean up
if autoreconf --install $do_symlink --force; then
Can this be added to the library or an option to autogen.sh is better ?
Thanks
Fabio
The text was updated successfully, but these errors were encountered:
Commit fe705b8 forced autoreconf to always create symlinks, but some deficient filesystems,
cannot create them, and autoreconf fails on a linux VM where the git repository is on vboxfs.
I added an ugly workaround to autogen.sh, more or less doing
Can this be added to the library or an option to autogen.sh is better ?
Thanks
Fabio
The text was updated successfully, but these errors were encountered: