Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac #29345: don't use sage's config.status for the lrcalc build.
Browse files Browse the repository at this point in the history
The lrcalc SPKG has some outdated autotools, and we worked around that
in Trac ticket 19725 (commit 75de776) with the line,

  cp "$SAGE_ROOT"/config/config.* .

that is intended to import only config.guess and config.sub, judging by
the comment above it. However, it's also mistakenly copying in the sage
version of config.status, causing build problems when sage was configured
with a non-bash shell.
  • Loading branch information
orlitzky committed May 30, 2020
1 parent 5db5318 commit e810ad1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/pkgs/lrcalc/spkg-install.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
cd src

# Use newer version of config.guess and config.sub (see Trac #19725)
cp "$SAGE_ROOT"/config/config.* .
cp "$SAGE_ROOT"/config/config.guess .
cp "$SAGE_ROOT"/config/config.sub .

sdh_configure
sdh_make
Expand Down

0 comments on commit e810ad1

Please sign in to comment.