vapier 14/08/14 01:45:51 Added: jimtcl-0.75-bootstrap.patch Log: Rewrite ebuild to fix many errors & merge the live/release versions. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.1 dev-lang/jimtcl/files/jimtcl-0.75-bootstrap.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jimtcl/files/jimtcl-0.75-bootstrap.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/jimtcl/files/jimtcl-0.75-bootstrap.patch?rev=1.1&content-type=text/plain Index: jimtcl-0.75-bootstrap.patch =================================================================== always do a bootstrap w/local jimsh0 to avoid requiring tcl or jimtcl to be installed first. the bootstrap prog is small too. --- a/autosetup/find-tclsh +++ b/autosetup/find-tclsh @@ -4,9 +4,6 @@ d=`dirname "$0"` { "$d/jimsh0" "$d/test-tclsh"; } 2>/dev/null && exit 0 PATH="$PATH:$d"; export PATH -for tclsh in jimsh tclsh tclsh8.5 tclsh8.6; do - { $tclsh "$d/test-tclsh"; } 2>/dev/null && exit 0 -done echo 1>&2 "No installed jimsh or tclsh, building local bootstrap jimsh0" for cc in ${CC_FOR_BUILD:-cc} gcc; do { $cc -o "$d/jimsh0" "$d/jimsh0.c"; } 2>/dev/null || continue
