summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorDavid Wragg <david@rabbitmq.com>2010-11-04 13:55:48 +0000
committerDavid Wragg <david@rabbitmq.com>2010-11-04 13:55:48 +0000
commit5f1a3cf8f27043a6f7860552cb78f1f194a33b10 (patch)
treeb51c17cd61240aab011a92d12c7d163c8f572cdd /Makefile.am
parent5b41470ca661d528dbafadb5865eaaa2a4342c21 (diff)
downloadrabbitmq-c-github-ask-5f1a3cf8f27043a6f7860552cb78f1f194a33b10.tar.gz
Don't use ac_abs_confdir in autoconf.acbug23472
It's only available in recent versions of autoconf, and is not documented. Instead use things like srcdir and top_srcdir, which are documented long-standing features of autoconf.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 144422d..d5bac3f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,7 @@ squeakyclean: maintainer-clean
codegen:
mkdir -p $@
- cp -r "@AMQP_CODEGEN_DIR@"/* $@
+ cp -r "$(top_srcdir)/$(AMQP_CODEGEN_DIR)"/* $@
$(MAKE) -C $@ clean
EXTRA_DIST=codegen debian LICENSE-MPL-RabbitMQ LICENSE-GPL-2.0