From aaa68e49e8e5a68950a63b9aa4a8c1f6aed2e2d2 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Tue, 1 Nov 2011 15:33:08 +0100 Subject: Move common functions to a shared file * common.sh is included on build time * most functions are copied from makepkg --- finddeps.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'finddeps.in') diff --git a/finddeps.in b/finddeps.in index 4651fd9..1526fb8 100644 --- a/finddeps.in +++ b/finddeps.in @@ -3,6 +3,8 @@ # finddeps - find packages that depend on a given depname # +m4_include(lib/common.sh) + match=$1 if [[ -z $match ]]; then @@ -11,7 +13,7 @@ if [[ -z $match ]]; then echo 'Find packages that depend on a given depname.' echo 'Run this script from the top-level directory of your ABS tree.' echo '' - exit 0 + exit 1 fi find . -type d | while read d; do -- cgit v1.2.3-24-g4f1b