All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] raisin: Fix non-verbose case
@ 2015-04-16 16:19 George Dunlap
  2015-04-16 16:19 ` [PATCH 2/8] Include actual config in package, not defconfig George Dunlap
                   ` (7 more replies)
  0 siblings, 8 replies; 51+ messages in thread
From: George Dunlap @ 2015-04-16 16:19 UTC (permalink / raw)
  To: xen-devel; +Cc: George Dunlap

Because we use "set -e", we can't use the "a && b" construct, as it will fail and stop the script.

Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
---
 lib/common-functions.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/common-functions.sh b/lib/common-functions.sh
index 36e1766..06c894a 100644
--- a/lib/common-functions.sh
+++ b/lib/common-functions.sh
@@ -232,9 +232,9 @@ function for_each_component () {
         fi
         if eval [[ ! -z \$"$capital"_REVISION ]]
         then
-            [[ $VERBOSE -eq 1 ]] && echo calling "$component"_"$1"
+            [[ $VERBOSE -eq 0 ]] || echo calling "$component"_"$1"
             "$component"_"$1"
-            [[ $VERBOSE -eq 1 ]] && echo "$component"_"$1" done
+            [[ $VERBOSE -eq 0 ]] || echo "$component"_"$1" done
         fi
     done
 }
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2015-04-21 11:20 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-16 16:19 [PATCH 1/8] raisin: Fix non-verbose case George Dunlap
2015-04-16 16:19 ` [PATCH 2/8] Include actual config in package, not defconfig George Dunlap
2015-04-17 10:10   ` Stefano Stabellini
2015-04-16 16:19 ` [PATCH 3/8] raisin: Use fakeroot for mkdeb so we can build the package as non-root George Dunlap
2015-04-17  8:43   ` Ian Campbell
2015-04-17  9:39     ` Stefano Stabellini
2015-04-20 17:08       ` Stefano Stabellini
2015-04-20  8:57     ` George Dunlap
2015-04-20  9:09       ` Ian Campbell
2015-04-16 16:19 ` [PATCH 4/8] raisin: Use PKGTYPE rather than DISTRO to determine how to build a package George Dunlap
2015-04-17 10:10   ` Stefano Stabellini
2015-04-20 17:08     ` Stefano Stabellini
2015-04-16 16:19 ` [PATCH 5/8] raisin: Fix CentOS build George Dunlap
2015-04-16 16:23   ` George Dunlap
2015-04-17 10:14   ` Stefano Stabellini
2015-04-20  9:04     ` George Dunlap
2015-04-20 10:29       ` Stefano Stabellini
2015-04-20 17:08         ` Stefano Stabellini
2015-04-16 16:19 ` [PATCH 6/8] raisin: Break build into components and allow the sub-steps to be called individually George Dunlap
2015-04-17 10:18   ` Stefano Stabellini
2015-04-20  9:05     ` George Dunlap
2015-04-16 16:19 ` [PATCH 7/8] raisin: Rework component specification George Dunlap
2015-04-17 10:37   ` Stefano Stabellini
2015-04-20  9:17     ` George Dunlap
2015-04-20 10:26       ` Stefano Stabellini
2015-04-17 10:40   ` Stefano Stabellini
2015-04-20  9:19     ` George Dunlap
2015-04-20 17:08       ` Stefano Stabellini
2015-04-16 16:19 ` [PATCH 8/8] raisin: RFC Add blktap2 as an external tree George Dunlap
2015-04-17 10:50   ` Stefano Stabellini
2015-04-17 11:04     ` Ian Campbell
2015-04-20  9:38     ` George Dunlap
2015-04-20 10:08       ` Stefano Stabellini
2015-04-17 10:58   ` Stefano Stabellini
2015-04-20 10:59     ` George Dunlap
2015-04-20 17:05       ` Stefano Stabellini
2015-04-21  9:25         ` Ian Campbell
2015-04-21  9:49           ` George Dunlap
2015-04-21 10:09             ` Stefano Stabellini
2015-04-21 10:30               ` George Dunlap
2015-04-21 10:42                 ` Stefano Stabellini
2015-04-21 10:47                   ` George Dunlap
2015-04-21 11:01                   ` Dave Scott
2015-04-21 11:04                     ` Dave Scott
2015-04-21 11:06                       ` George Dunlap
2015-04-21 11:20                         ` Dave Scott
2015-04-21 10:06           ` Stefano Stabellini
2015-04-17 10:06 ` [PATCH 1/8] raisin: Fix non-verbose case Stefano Stabellini
2015-04-20  8:49   ` George Dunlap
2015-04-20 10:01     ` Stefano Stabellini
2015-04-20 17:07       ` Stefano Stabellini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.