# HG changeset patch # User Mychaela Falconia # Date 1477461434 0 # Node ID 4368f76e3d56b33ad717ef6dad843bfef64187b4 # Parent b77005f6d3155f55b7b4a0eaa1b71b71945d38be loadtools/install-helpers.sh no longer needed diff -r b77005f6d315 -r 4368f76e3d56 loadtools/install-helpers.sh --- a/loadtools/install-helpers.sh Wed Oct 26 05:55:04 2016 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -#!/bin/sh -# A functional installation of FreeCalypso loadtools consists of not only -# the fc-* host binaries, but also the loadagent and compalstage target -# binaries and some script and help files. This shell script is -# responsible for installing the latter. - -instdir=/usr/local/share/freecalypso -set -ex -mkdir -p $instdir - -# The target-binaries directory may or may not be present. Loadagent and -# compalstage are built in the target-utils tree with the ARM7 toolchain, -# hence having prebuilt binaries would be an important convenience for -# end user releases. But if one is working with just a source tree, with -# nothing prebuilt, there will be no target-binaries directory here; -# one needs to have the ARM7 toolchain installed, then build target-utils, -# then do a 'make install' there. - -if [ -d target-binaries ] -then - install -c -m 644 target-binaries/* $instdir -fi - -# scripts and loadtool.help should always be present -install -c -m 644 scripts/* loadtool.help $instdir