Skip to content

Commit

Permalink
Test filesystem provides symlink in autogen.sh (closes #414)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane committed Oct 22, 2024
1 parent 51f37e0 commit 966048b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#! /bin/sh
if autoreconf --install --symlink --force; then
do_symlink=
if ln -s autogen-symlink-test autogen-symlink-test-link > /dev/null 2>&1; then
do_symlink=--symlink
rm autogen-symlink-test-link
fi
if autoreconf --install $do_symlink --force; then
echo
echo "------------------------------------------------------"
echo "Initialized build system. You can now run ./configure "
Expand Down

0 comments on commit 966048b

Please sign in to comment.