diff mbox series

[1/2] UBUNTU: [Packaging] drop redundant = from define statements

Message ID 20190205103227.6048-2-apw@canonical.com
State New
Headers show
Series [1/2] UBUNTU: [Packaging] drop redundant = from define statements | expand

Commit Message

Andy Whitcroft Feb. 5, 2019, 10:32 a.m. UTC
This = syntax is not supported in older GNU Make versions and the = form
is exactly equivalent to the unannoted define.

Signed-off-by: Andy Whitcroft <apw@canonical.com>
---
 debian/rules.d/2-binary-arch.mk | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk
index 3200f755bb26..f32b61e2d1fc 100644
--- a/debian/rules.d/2-binary-arch.mk
+++ b/debian/rules.d/2-binary-arch.mk
@@ -39,7 +39,7 @@  prepare-%: $(stampdir)/stamp-prepare-%
 build-%: $(stampdir)/stamp-build-%
 	@echo Debug: $@
 
-define build_zfs =
+define build_zfs
 	#
 	# SPL/ZFS wants a fully built kernel before you can configure and build.
 	# It seems to be impossible to tease out the application configuration
@@ -74,14 +74,14 @@  $(stampdir)/stamp-build-%: $(stampdir)/stamp-prepare-%
 
 	@touch $@
 
-define install_zfs =
+define install_zfs
 	cd $(builddir)/build-$*/spl/module; \
 		$(kmake) -C $(builddir)/build-$* SUBDIRS=`pwd` modules_install $(splopts)
 	cd $(builddir)/build-$*/zfs/module; \
 		$(kmake) -C $(builddir)/build-$* SUBDIRS=`pwd` modules_install $(zfsopts)
 endef
 
-define install_control =
+define install_control
 	for which in $(3);							\
 	do									\
 		template="$(DROOT)/templates/$(2).$$which.in";			\