summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-05-29 17:58:18 -0700
committerJeremy Evans <code@jeremyevans.net>2019-05-29 18:03:21 -0700
commitd2ba80b5df7118383cbcfae934316310c6d81633 (patch)
tree777b55b5ca4b6748d8fca28abda467643b9aa621 /common.mk
parent5867e51e8311d1ed49457e946751cd0c06a306b8 (diff)
Revert "Fix building with 1.8 BASERUBY"
This reverts commit 05bc14d81a1d7f6af826a92371aeff0c3fb2a67e. We have decided that the cost of reintroducing support for 1.8 BASERUBY outweighs the benefit. If you are still using 1.8 and want to build master/trunk, build and install the latest release, and use that as BASERUBY.
Diffstat (limited to 'common.mk')
-rwxr-xr-xcommon.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index db930426a3..74463651e1 100755
--- a/common.mk
+++ b/common.mk
@@ -785,9 +785,9 @@ extconf: $(PREP)
$(RBCONFIG): $(srcdir)/tool/mkconfig.rb config.status $(srcdir)/version.h
$(Q)$(BOOTSTRAPRUBY) -n \
- -e 'BEGIN{VERSION=ARGV.shift;MIS=ARGV.dup}' \
- -e 'END{abort "UNICODE version mismatch: #{MIS}" unless MIS.empty?}' \
- -e '(MIS.delete(ARGF.path); ARGF.close) if /ONIG_UNICODE_VERSION_STRING +"#{Regexp.quote(VERSION)}"/o' \
+ -e 'BEGIN{version=ARGV.shift;mis=ARGV.dup}' \
+ -e 'END{abort "UNICODE version mismatch: #{mis}" unless mis.empty?}' \
+ -e '(mis.delete(ARGF.path); ARGF.close) if /ONIG_UNICODE_VERSION_STRING +"#{Regexp.quote(version)}"/o' \
$(UNICODE_VERSION) $(UNICODE_DATA_HEADERS)
$(Q)$(BOOTSTRAPRUBY) $(srcdir)/tool/mkconfig.rb \
-arch=$(arch) -version=$(RUBY_PROGRAM_VERSION) \