Merge pull request #6069 from dearblue/MRUBY_PACKAGE_DIR

Corrected wrong `MRUBY_PACKAGE_DIR`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-10-13 16:04:25 +07:00
committed by GitHub
+1 -1
View File
@@ -41,7 +41,7 @@ MRuby.each_target do
open(t.name, 'w') do |f|
f.puts <<~FLAGS_MAKE
# GNU make is required to use this file.
MRUBY_PACKAGE_DIR_GNU := $(shell dirname "$(firstword $(MAKEFILE_LIST))")
MRUBY_PACKAGE_DIR_GNU := $(shell dirname "$(lastword $(MAKEFILE_LIST))")
MRUBY_PACKAGE_DIR != dirname "$(MRUBY_PACKAGE_DIR_GNU)"
FLAGS_MAKE