diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-04T10·02+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-04T10·21+0100 |
commit | 4ee6001f95908578a1693c0fbf7b7fdc309b86c5 (patch) | |
tree | fd38206cabe916e6a8672a319a73e9877f20a3ac /mk/tests.mk | |
parent | 143224f7cd6f6667047a1683c1ede4e1f7816843 (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/tests.mk')
-rw-r--r-- | mk/tests.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index bb94a83ac3a2..6bdb4e57739e 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -1,5 +1,5 @@ # Run program $1 as part of ‘make installcheck’. -define run-install-test = +define run-install-test installcheck: $1 |