Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Why are configure and make invoked differently in scripts/build_pkg.sh depending on the presence of autogen.sh? #14

Open
wilfwilson opened this issue May 19, 2021 · 0 comments

Comments

@wilfwilson
Copy link
Member

Is this deliberate - if so, what is the reason?

if [[ -x autogen.sh ]]; then
./autogen.sh
./configure --with-gaproot=$GAPROOT
make -j4 V=1
elif [[ -x configure ]]; then
./configure $GAPROOT
make -j4 CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS"
fi

I naively would have expected something of this form:

if autogen.sh exists:
  run it
if configure exists:
  run configure
  run make
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant