diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-03-19 02:04:31 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-03-19 02:04:31 +0000 |
commit | 663eefcb6fad1c2384a4675c0a665390c6380133 (patch) | |
tree | 9371382df1193ac6d2c9fa74a019ca8896e52079 /Makefile.in | |
parent | 5e132260c4de9f221d480b526264e131d93ac69d (diff) | |
download | ruby-663eefcb6fad1c2384a4675c0a665390c6380133.tar.gz |
Makefile.in: CONFIGURE
* Makefile.in (CONFIGURE): make configure script name selectable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index d5b1279022..6983dd1008 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,6 +22,7 @@ LD = @LD@ YACC = bison PURIFY = AUTOCONF = autoconf +CONFIGURE = @CONFIGURE@ @SET_MAKE@ MKFILES = @MAKEFILES@ BASERUBY = @BASERUBY@ @@ -298,8 +299,8 @@ reconfig config.status: $(srcdir)/configure $(srcdir)/enc/Makefile.in \ @PWD= MINIRUBY="$(MINIRUBY)"; export MINIRUBY; \ set $(SHELL) $($@-args); $(reconfig-exec-$(V)) -$(srcdir)/configure: $(srcdir)/configure.in - $(CHDIR) $(srcdir) && exec $(AUTOCONF) +$(srcdir)/$(CONFIGURE): $(srcdir)/configure.in + $(CHDIR) $(srcdir) && exec $(AUTOCONF) -o $(@F) incs: id.h all-incs: probes.h |