diff options
author | Jean Boussier <[email protected]> | 2024-11-05 17:13:42 +0100 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2024-11-05 18:00:36 +0100 |
commit | 9987298654c5951d320f00876e2df0c2aa27c02c (patch) | |
tree | 425baed9ba05f889b174dab50b3c41d5980f536b | |
parent | ca8f21ace86e9c7ab184b3f0087ff458c06b178c (diff) |
Update depend files
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12003
-rw-r--r-- | ext/json/generator/depend | 3 | ||||
-rw-r--r-- | ext/json/parser/depend | 3 | ||||
-rwxr-xr-x | tool/sync_default_gems.rb | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/ext/json/generator/depend b/ext/json/generator/depend index f47e5f3a70..65be7b8665 100644 --- a/ext/json/generator/depend +++ b/ext/json/generator/depend @@ -1,5 +1,5 @@ $(OBJS): $(ruby_headers) -generator.o: generator.c generator.h $(srcdir)/../fbuffer/fbuffer.h +generator.o: generator.c $(srcdir)/../fbuffer/fbuffer.h # AUTOGENERATED DEPENDENCIES START generator.o: $(RUBY_EXTCONF_H) @@ -178,5 +178,4 @@ generator.o: $(hdrdir)/ruby/st.h generator.o: $(hdrdir)/ruby/subst.h generator.o: $(srcdir)/../fbuffer/fbuffer.h generator.o: generator.c -generator.o: generator.h # AUTOGENERATED DEPENDENCIES END diff --git a/ext/json/parser/depend b/ext/json/parser/depend index f3422b4f84..4cdf69a749 100644 --- a/ext/json/parser/depend +++ b/ext/json/parser/depend @@ -1,5 +1,5 @@ $(OBJS): $(ruby_headers) -parser.o: parser.c parser.h $(srcdir)/../fbuffer/fbuffer.h +parser.o: parser.c $(srcdir)/../fbuffer/fbuffer.h # AUTOGENERATED DEPENDENCIES START parser.o: $(RUBY_EXTCONF_H) @@ -175,6 +175,5 @@ parser.o: $(hdrdir)/ruby/st.h parser.o: $(hdrdir)/ruby/subst.h parser.o: $(srcdir)/../fbuffer/fbuffer.h parser.o: parser.c -parser.o: parser.h parser.o: parser.rl # AUTOGENERATED DEPENDENCIES END diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 11376f5497..6bd9190c7d 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -198,7 +198,7 @@ module SyncDefaultGems cp_r("#{upstream}/json.gemspec", "ext/json") rm_rf(%w[ext/json/lib/json/pure.rb ext/json/lib/json/pure ext/json/lib/json/truffle_ruby/]) json_files = Dir.glob("ext/json/lib/json/ext/**/*", File::FNM_DOTMATCH).select { |f| File.file?(f) } - rm_rf(json_files - Dir.glob("ext/json/lib/json/ext/**/*.rb")) + rm_rf(json_files - Dir.glob("ext/json/lib/json/ext/**/*.rb") - Dir.glob("ext/json/lib/json/ext/**/depend")) `git checkout ext/json/extconf.rb ext/json/parser/prereq.mk ext/json/generator/depend ext/json/parser/depend ext/json/depend benchmark/` when "psych" rm_rf(%w[ext/psych test/psych]) |