diff options
author | Nick White <git@njw.me.uk> | 2009-06-16 12:15:00 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-06-16 12:15:00 +0100 |
commit | a7c91c0e8fe83117f601d26beb5dffa884fc15da (patch) | |
tree | 35a1e176915cb920500242ab105ef4171e655a9a | |
parent | abda548dbd0195ce04547f5fc89188662995f0e4 (diff) | |
download | njw-gentoo-local-a7c91c0e8fe83117f601d26beb5dffa884fc15da.tar.bz2 njw-gentoo-local-a7c91c0e8fe83117f601d26beb5dffa884fc15da.zip |
Fixed patch checking
-rw-r--r-- | eclass/kernel-libre.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/kernel-libre.eclass b/eclass/kernel-libre.eclass index 483015a..feaafdf 100644 --- a/eclass/kernel-libre.eclass +++ b/eclass/kernel-libre.eclass @@ -38,7 +38,7 @@ kernel-libre_src_unpack() { # kernel revision patches included in tarball UNIPATCH_LIST_DEFAULT="" - if [ -n ${UNIPATCH_LIST_GENPATCHES} || -n ${UNIPATCH_LIST} ]; then + if [ -n "${UNIPATCH_LIST_GENPATCHES}" || -n "${UNIPATCH_LIST}" ]; then echo "Checking all patches are clean of blobs" check_for_blobs "UNIPATCH_LIST_GENPATCHES" check_for_blobs "UNIPATCH_LIST" |