From e9b6e97d93ebd5e8708b62b79e8bf8fb48f5503b Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 13 Feb 2012 10:09:09 -0800 Subject: [PATCH] debian: Do not run "make" if "configure" fails during DKMS build. There is no point in trying to run "make" if "configure" failed. The "make" will fail too and the log will be harder to read. CC: Thomas Goirand CC: Simon Horman Signed-off-by: Ben Pfaff --- debian/dkms.conf.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/dkms.conf.in b/debian/dkms.conf.in index a6dc316b2..ae1fc7a08 100644 --- a/debian/dkms.conf.in +++ b/debian/dkms.conf.in @@ -1,6 +1,6 @@ PACKAGE_NAME="openvswitch" PACKAGE_VERSION="__VERSION__" -MAKE="./configure --with-linux=/lib/modules/`uname -r`/build ; make -C datapath/linux" +MAKE="./configure --with-linux=/lib/modules/`uname -r`/build && make -C datapath/linux" BUILT_MODULE_NAME[0]=openvswitch_mod BUILT_MODULE_NAME[1]=brcompat_mod BUILT_MODULE_LOCATION[0]=datapath/linux/ -- 2.43.0