#7344: New libjpeg package
---------------------------+------------------------------------------------
Reporter: timdumol | Owner: mabshoff
Type: enhancement | Status: needs_review
Priority: major | Milestone:
Component: packages | Keywords:
Author: Tim Dumol | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
---------------------------+------------------------------------------------
Comment(by drkirkby):
Replying to [comment:13 timdumol]:
> New package version here:
http://sage.math.washington.edu/home/timdumol/libjpeg-7.p2.spkg
>
> As stated in #7818, some makefiles depend on $RM being unset or set to
"rm -f". The above code overrides any $RM setting, which otherwise causes
compilation failure (at least for me).
There's a much simpler way to unset RM than use
{{{
: ${RM=rm}; RM="$RM -f"; export RM
}}}
one can use:
{{{
unset RM
}}}
If a Makefile needs RM set, I feel it would be better to fix the Makefile
and report that upstream. Likewise if a Makefile needs {{{rm -f}}}, it
should use {{{rm -f}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/7344#comment:15>
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 post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.