summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/oh-installfiles5
-rw-r--r--src/oh-strip5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/oh-installfiles b/src/oh-installfiles
index 89a34e4..1069192 100644
--- a/src/oh-installfiles
+++ b/src/oh-installfiles
@@ -24,6 +24,11 @@ print_usage()
printf 'Usage: %s pkgname...\n' "$1"
}
+if [ ${#} -eq 0 ]; then
+ print_usage ${0} >&2
+ exit 1
+fi
+
while [ ${#} -gt 0 ]; do
OLDIFS=${IFS}
IFS='
diff --git a/src/oh-strip b/src/oh-strip
index 06e1d92..e3ae500 100644
--- a/src/oh-strip
+++ b/src/oh-strip
@@ -58,6 +58,11 @@ if [ -z "${is_lib}" ]; then
is_lib=false
fi
+if [ ${#} -eq 0 ]; then
+ print_usage ${0} >&2
+ exit 1
+fi
+
while [ ${#} -gt 0 ]; do
if ${make_dbg_pkg}; then
objcopy --only-keep-debug "dest/${1}" "dest/usr/lib/debug/${1}"