about summary refs log tree commit diff
path: root/mk/libraries.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-04T10·02+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-04T10·21+0100
commit4ee6001f95908578a1693c0fbf7b7fdc309b86c5 (patch)
treefd38206cabe916e6a8672a319a73e9877f20a3ac /mk/libraries.mk
parent143224f7cd6f6667047a1683c1ede4e1f7816843 (diff)
GNU Make 3.81 compatibility
3.81 doesn't understand the ‘define foo =’ syntax, which was added in
3.82.  So use ‘define foo’ instead.
Diffstat (limited to 'mk/libraries.mk')
-rw-r--r--mk/libraries.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/libraries.mk b/mk/libraries.mk
index a6965325a629..69dede9af418 100644
--- a/mk/libraries.mk
+++ b/mk/libraries.mk
@@ -38,7 +38,7 @@ endif
 #
 # - BUILD_SHARED_LIBS: if equal to ‘1’, a dynamic library will be
 #   built, otherwise a static library.
-define build-library =
+define build-library
   $(1)_NAME ?= $(1)
   _d := $$(strip $$($(1)_DIR))
   _srcs := $$(sort $$(foreach src, $$($(1)_SOURCES), $$(src)))