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
If you build sage and the directory path contains a "-h" anywhere in it, then NTL's perl DoConfig script displays a help message and exists. This totally breaks building sage. The code at fault is:
if ($arg =~ '-h|help|-help|--help') {
system("more ../doc/config.txt");
exit;
}
In particular, PREFIX will get passed in and if your directory were, e.g,. build-sage-help-me-foobar then Sage won't work.
fixes the problem by removing the help option for now. Note that this spkg also fixes #4978.
Cheers,
Michael
sagetrac-mabshoffmannequin
changed the title
Bug in NTL's ./configure
NTL's DoConfig errors out when NTL is build with dependencies in a directory containing [-h|help|-help|--help]
Jan 29, 2009
If you build sage and the directory path contains a "-h" anywhere in it, then NTL's perl DoConfig script displays a help message and exists. This totally breaks building sage. The code at fault is:
In particular, PREFIX will get passed in and if your directory were, e.g,. build-sage-help-me-foobar then Sage won't work.
Component: build
Issue created by migration from https://trac.sagemath.org/ticket/5040
The text was updated successfully, but these errors were encountered: