Skip to content

Commit

Permalink
Trac #21359: LiE does not start
Browse files Browse the repository at this point in the history
{{{
sage: lie.console()
/home/martin/sage-develop/local/bin/lie: Zeile 4: /home/martin/sage-
develop/local/var/tmp/sage/build/lie-2.2.2/src/Lie.exe: Datei oder
Verzeichnis nicht gefunden
}}}

The contents of `sage-develop/local/bin/lie` is
{{{
#!/bin/sh

LD=/home/martin/sage-develop/local/var/tmp/sage/build/lie-2.2.2/src
exec $LD/Lie.exe initfile $LD
}}}
which looks like nonsense.  Indeed, changing it to
{{{
LD=/home/martin/sage-develop/local/lib/LiE
}}}
fixes the problem.  No idea (yet) where to put this though.

URL: https://trac.sagemath.org/21359
Reported by: mantepse
Ticket author(s): John Palmieri
Reviewer(s): Travis Scrimshaw
  • Loading branch information
Release Manager authored and vbraun committed Sep 3, 2016
2 parents 73fb8ad + f930d64 commit ace6c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/pkgs/lie/spkg-install
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $MAKE CC="$CC" || die "Error building LiE. Did you install bison?"
# "install" the LiE package by moving over the complete build
# directory to $SAGE_LOCAL/lib/lie
cd ..
sed -e "s'$PWD/LiE'$SAGE_LOCAL/lib/LiE'" src/lie > src/lie~
sed -e "s'$PWD/src'$SAGE_LOCAL/lib/LiE'" src/lie > src/lie~
mv src/lie~ src/lie
chmod +x src/lie
rm -rf "$SAGE_LOCAL"/lib/lie # clean up old versions
Expand Down

0 comments on commit ace6c00

Please sign in to comment.