diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-12-10 20:52:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-12-10 20:52:45 +0000 |
commit | 04abaefe705ca2f841b86d14ac908aaf5e557b51 (patch) | |
tree | aa3f3d04953b95fadd9fa688f547cad984ac32fb /scripts | |
parent | 10f627db5c4dd5bb71ece1f8aabebd0de901bce8 (diff) | |
download | upstream-04abaefe705ca2f841b86d14ac908aaf5e557b51.tar.gz upstream-04abaefe705ca2f841b86d14ac908aaf5e557b51.tar.bz2 upstream-04abaefe705ca2f841b86d14ac908aaf5e557b51.zip |
add a simple script for symlinking one tree into another for doing builds with separate build dirs, but the same source dir
SVN-Revision: 18734
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/symlink-tree.sh | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/scripts/symlink-tree.sh b/scripts/symlink-tree.sh new file mode 100755 index 0000000000..8be5f6c967 --- /dev/null +++ b/scripts/symlink-tree.sh @@ -0,0 +1,45 @@ +#!/usr/bin/env bash +# Create a new openwrt tree with symlinks pointing at the current tree +# Usage: ./scripts/symlink-tree.sh <destination> + +FILES=" + BSDmakefile + Config.in + LICENSE + Makefile + README + dl + docs + feeds.conf.default + include + package + rules.mk + scripts + target + toolchain + tools" + +if [ -f feeds.conf ] ; then + FILES="$FILES feeds.conf" +fi + +if [ -z "$1" ]; then + echo "Syntax: $0 <destination>" + exit 1 +fi + +if [ -e "$1" ]; then + echo "Error: $1 already exists" + exit 1 +fi + +set -e # fail if any commands fails +mkdir -p dl "$1" +for file in $FILES; do + [ -e "$PWD/$file" ] || { + echo "ERROR: $file does not exist in the current tree" + exit 1 + } + ln -s "$PWD/$file" "$1/" +done +exit 0 |