diff options
author | Daniel Elstner <danielk@openismus.com> | 2009-08-18 20:40:11 +0200 |
---|---|---|
committer | Daniel Elstner <danielk@openismus.com> | 2009-08-18 20:40:11 +0200 |
commit | 39a478647c5b9988590285be76fd3d235f5b2744 (patch) | |
tree | 039448591e683630700fc67f88319386a71c7ba0 | |
parent | e1a5f762caff6c53f19b933c0fdb70a14319b0c0 (diff) | |
download | mm-common-39a478647c5b9988590285be76fd3d235f5b2744.tar.gz |
Pass the gmmproc module directory to Perl
* build/generate-binding.am (gmmproc): Pass -I"$(GMMPROC_DIR)/pm" to
the Perl interpreter in the default command line to invoke gmmproc.
-rw-r--r-- | build/generate-binding.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/generate-binding.am b/build/generate-binding.am index 1a9ba64..be5cd40 100644 --- a/build/generate-binding.am +++ b/build/generate-binding.am @@ -53,7 +53,7 @@ MAINTAINERCLEANFILES = $(binding_stampdir)/*.stamp gmmproc_dependencies = $(binding_relfiles_m4) $(files_defs) # Default command lines for running the code generators. -gmmproc ?= $(PERL) -- "$(GMMPROC_DIR)/gmmproc" +gmmproc ?= $(PERL) -I"$(GMMPROC_DIR)/pm" -- "$(GMMPROC_DIR)/gmmproc" gen_wrap_init ?= $(PERL) -- "$(GMMPROC_DIR)/generate_wrap_init.pl" gmmproc_flags ?= -I $(codegen_m4_srcdir) --defs $(srcdir) |