diff options
author | Nick White <git@njw.me.uk> | 2009-06-16 12:18:37 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-06-16 12:18:37 +0100 |
commit | 6679cf39af86871ed8caa38a77ee53595f631511 (patch) | |
tree | d5e9b7e93dafacc977e01b113e43052d81d64266 /eclass | |
parent | a7c91c0e8fe83117f601d26beb5dffa884fc15da (diff) | |
download | njw-gentoo-local-6679cf39af86871ed8caa38a77ee53595f631511.tar.bz2 njw-gentoo-local-6679cf39af86871ed8caa38a77ee53595f631511.zip |
Really fix patch checking
Diffstat (limited to 'eclass')
-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 feaafdf..f9ed46f 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" |