diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2008-10-30 15:53:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2008-10-30 15:53:42 +0000 |
commit | 11445603e0800b13f2489f8bc3cc3af1fb00d7b4 (patch) | |
tree | 5369f7c121686782d7bf6b61b7457e342cea351e /abuild | |
parent | f463f826023dd5d6786be0efa47ac054eeb51214 (diff) | |
download | abuild-11445603e0800b13f2489f8bc3cc3af1fb00d7b4.tar.gz abuild-11445603e0800b13f2489f8bc3cc3af1fb00d7b4.tar.bz2 abuild-11445603e0800b13f2489f8bc3cc3af1fb00d7b4.tar.xz abuild-11445603e0800b13f2489f8bc3cc3af1fb00d7b4.zip |
do not run md5sum if there are nothing to check
Diffstat (limited to 'abuild')
-rwxr-xr-x | abuild | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -56,6 +56,9 @@ checkdeps() { } checkmd5() { + if [ -z "$source" ]; then + return 0 + fi if [ -z "$md5sums" ]; then die "Use 'abuild checksum >>$APKBUILD' to generate a checksum" fi |