summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-05 15:56:45 +0000
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-05 15:56:45 +0000
commiteafd54319e7964ea5dbd590138f1c0854b679867 (patch)
tree9541c39c0f0462ff82a8e81cc7f1fd77b42a9a69
parent4b7c5cdb8a61902290e18f17a6eb5ea2960b115d (diff)
downloadfontutils-eafd54319e7964ea5dbd590138f1c0854b679867.tar.gz
Apparently, the second and third argument to AC_DEFINE may not be empty.
-rw-r--r--fontutils.morph2
1 files changed, 1 insertions, 1 deletions
diff --git a/fontutils.morph b/fontutils.morph
index 3473568..ce2df6f 100644
--- a/fontutils.morph
+++ b/fontutils.morph
@@ -3,7 +3,7 @@
"kind": "chunk",
"build-system": "autotools",
"configure-commands": [
- "sed -i -e 's@AC_DEFINE(HAVE_PROGRAM_INVOCATION_NAME)@AC_DEFINE([HAVE_PROGRAM_INVOCATION_NAME], [], [])@g' configure.in",
+ "sed -i -e 's@AC_DEFINE(HAVE_PROGRAM_INVOCATION_NAME)@AC_DEFINE([HAVE_PROGRAM_INVOCATION_NAME], [1], [Foo])@g' configure.in",
"autoreconf -ivf",
"./configure --prefix=\"$PREFIX\""
]