Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
e050cfb3
Unverified
Commit
e050cfb3
authored
Jun 20, 2018
by
take-cheeze
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add forgotten `mkdir_p`s.
parent
5e7ced07
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
mrbgems/mruby-compiler/mrbgem.rake
mrbgems/mruby-compiler/mrbgem.rake
+1
-0
tasks/libmruby.rake
tasks/libmruby.rake
+1
-0
tasks/mrbgems.rake
tasks/mrbgems.rake
+1
-0
No files found.
mrbgems/mruby-compiler/mrbgem.rake
View file @
e050cfb3
...
...
@@ -27,6 +27,7 @@ MRuby::Gem::Specification.new 'mruby-compiler' do |spec|
# Parser
file
"
#{
current_build_dir
}
/core/y.tab.c"
=>
[
"
#{
current_dir
}
/core/parse.y"
]
do
|
t
|
FileUtils
.
mkdir_p
File
.
dirname
t
.
name
yacc
.
run
t
.
name
,
t
.
prerequisites
.
first
end
...
...
tasks/libmruby.rake
View file @
e050cfb3
...
...
@@ -4,6 +4,7 @@ MRuby.each_target do
end
file
"
#{
build_dir
}
/lib/libmruby.flags.mak"
=>
[
__FILE__
,
libfile
(
"
#{
build_dir
}
/lib/libmruby"
)]
do
|
t
|
FileUtils
.
mkdir_p
File
.
dirname
t
.
name
open
(
t
.
name
,
'w'
)
do
|
f
|
f
.
puts
"MRUBY_CFLAGS =
#{
cc
.
all_flags
}
"
...
...
tasks/mrbgems.rake
View file @
e050cfb3
...
...
@@ -53,6 +53,7 @@ MRuby.each_target do
# legal documents
file
"
#{
build_dir
}
/LEGAL"
=>
[
MRUBY_CONFIG
,
__FILE__
]
do
|
t
|
FileUtils
.
mkdir_p
File
.
dirname
t
.
name
open
(
t
.
name
,
'w+'
)
do
|
f
|
f
.
puts
<<
LEGAL
Copyright (c)
#{
Time
.
now
.
year
}
mruby developers
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment