From 25979309f8be6cd0a7120e298e5e5344660fe46b Mon Sep 17 00:00:00 2001 From: John Bowler Date: Wed, 13 Jul 2005 07:41:16 +0000 Subject: Add install-native package and remove the install-sh from those packages which used it to get round the install -s problem - now simply add install-native to the DEPENDS for packages which attempt to use the host install with '-s' --- packages/install/install-native_0.1.bb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 packages/install/install-native_0.1.bb (limited to 'packages/install/install-native_0.1.bb') diff --git a/packages/install/install-native_0.1.bb b/packages/install/install-native_0.1.bb new file mode 100644 index 0000000000..2ae7df615a --- /dev/null +++ b/packages/install/install-native_0.1.bb @@ -0,0 +1,25 @@ +# This package uses the GNU autotools install-sh script to implement +# a target-capable 'install' command. +DESCRIPTION = "Target install command" +MAINTAINER = "John Bowler " +SECTION = "devel" +PRIORITY = "optional" +LICENSE = "MIT" +INHIBIT_DEFAULT_DEPS = "1" + +SRC_URI = "file://install-sh" + +PACKAGES = "" +S = "${WORKDIR}" + +do_stage() { + # When the install command is executed 'STRIP' is defined correctly in + # the environment + rm -f ${STAGING_BINDIR}/install-sh + cp install-sh ${STAGING_BINDIR}/install-sh + chmod 755 ${STAGING_BINDIR}/install-sh + rm -f ${STAGING_BINDIR}/install + echo '#!/bin/sh' >${STAGING_BINDIR}/install + echo 'STRIPPROG="$STRIP" exec sh "${STAGING_BINDIR}/install-sh" "$@"' >>${STAGING_BINDIR}/install + chmod 755 ${STAGING_BINDIR}/install +} -- cgit v1.2.3