From 12d1aa4b69614f6499847758294f8a40f1611710 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 30 Jun 2013 21:29:08 +0200 Subject: Remove BR2_HAVE_DEVFILES This finally removes the BR2_HAVE_DEVFILES option, that was used to install/keep development files on target. With the recent migration of the internal backend to the package infrastructure, we had anyway lost the ability to build gcc for the target, and install the uClibc development files on the target. [Peter: also remove support/scripts/copy.sh] Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- support/scripts/copy.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 support/scripts/copy.sh (limited to 'support') diff --git a/support/scripts/copy.sh b/support/scripts/copy.sh deleted file mode 100755 index 508ed56af..000000000 --- a/support/scripts/copy.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -STAGING_DIR=$1 -TARGET_DIR=$2 - -echo "Copying development files to target..." - -cp -af ${STAGING_DIR}/usr/include ${TARGET_DIR}/usr - -for LIBSDIR in /lib /usr/lib; do - for WILDCARD in *.a *.la; do - for FILE_PATH in `find ${STAGING_DIR}${LIBSDIR} -name ${WILDCARD}`; do - STAGING_STRIPPED=${FILE_PATH##${STAGING_DIR}} - EXTENDED_DIR=${STAGING_STRIPPED%/${WILDCARD}} - mkdir -p ${TARGET_DIR}${EXTENDED_DIR} - cp -fa ${FILE_PATH} ${TARGET_DIR}${STAGING_STRIPPED} - #echo ${TARGET_DIR}${STAGING_STRIPPED} - done - done -done -- cgit v1.2.3