Makes warnings/errors visible when building with V=w/V=1.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 35718
fi
if [ -z "$1" ]; then
- echo "Syntax: $0 <destination>"
+ echo "Syntax: $0 <destination>" >&2
exit 1
fi
if [ -e "$1" ]; then
- echo "Error: $1 already exists"
+ echo "Error: $1 already exists" >&2
exit 1
fi
mkdir -p dl "$1"
for file in $FILES; do
[ -e "$PWD/$file" ] || {
- echo "ERROR: $file does not exist in the current tree"
+ echo "ERROR: $file does not exist in the current tree" >&2
exit 1
}
ln -s "$PWD/$file" "$1/"