#14492: Modular group cohomology, version 2.1.4
--------------------------------------+-------------------------------------
Reporter: SimonKing | Owner: tbd
Type: defect | Status: needs_work
Priority: major | Milestone: sage-5.10
Component: packages: optional | Resolution:
Keywords: group cohomology | Work issues:
Report Upstream: N/A | Reviewers: Volker Braun
Authors: SimonKing | Merged in:
Dependencies: | Stopgaps:
--------------------------------------+-------------------------------------
Comment (by jdemeyer):
Replying to [comment:49 SimonKing]:
> Really??? Actually I already wondered about Volker's comment about spkg-
check.orig. Anyway, I just posted a version that should be garbage free.
Probably you posted the wrong version last time.
> You mean: Defining `MAKE` temporarily as `make`? How should it be done
to temporarily disallow `make -jN` with `N>1`?
Replace
{{{
# MeatAxe would fail to build parallely. Therefore, although it is
probably bad style:
OLD_MAKE="$MAKE";
MAKE=make; export MAKE;
cd src
$MAKE
if [ $? -ne 0 ]; then
echo "Error building pGroupCohomology."
exit 1
fi
$MAKE install
if [ $? -ne 0 ]; then
echo "Error installing pGroupCohomology."
exit 1
fi
#rm pGroupCohomology/*.c
MAKE="$OLDMAKE"; export MAKE;
}}}
by
{{{
cd src
# MeatAxe fails to build in parallel, so we build with only 1 thread:
$MAKE -j1
if [ $? -ne 0 ]; then
echo "Error building pGroupCohomology."
exit 1
fi
$MAKE -j1 install
if [ $? -ne 0 ]; then
echo "Error installing pGroupCohomology."
exit 1
fi
}}}
> > and this redundant line:
> > {{{
> > DISTUTILS_DEBUG='debug'
> > }}}
>
> So, I can remove it?
Yes, it doesn't do anything since the variable isn't exported.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/14492#comment:53>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.