bake-toolkit 2.64.3 → 2.64.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/blocks/compile.rb +1 -1
- data/lib/common/version.rb +1 -1
- data/lib/tocxx.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 511748b7bf298219c3c7f9ea2444ca6ac0049d67c1f01e2510bfd7ae619dfbd0
|
4
|
+
data.tar.gz: a28dea4db9569b991637e0a98e749bec0f5336a2ede3a76869488f701bc74646
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 439f8755aa29bdefd4e65300f56a56883db480e0efd277d1692c5494f1368d2ae40226fdf7ddf76c622585735c0750edade07468490a17aa5c4b34e04d833b85
|
7
|
+
data.tar.gz: 3cd7e4828239cebc6e6a61180919c563a4b3e1bd3701eecdb1fe6f60d86610716dcc9f370da5d0f3ec46063b258f6c5e56f42d87b2233985905b33946822b38c
|
data/lib/blocks/compile.rb
CHANGED
@@ -561,7 +561,7 @@ module Bake
|
|
561
561
|
pr = sources.name
|
562
562
|
pr = pr[2..-1] if pr.start_with?"./"
|
563
563
|
|
564
|
-
res = Dir.glob_dir(pr, @projectDir).sort
|
564
|
+
res = Dir.glob_dir(pr, @projectDir).select {|f| !get_source_type(f).nil?}.sort
|
565
565
|
if res.length == 0 and cleaning == false
|
566
566
|
if not pr.include?"*" and not pr.include?"?"
|
567
567
|
Bake.formatter.printError("Source file '#{pr}' not found", sources)
|
data/lib/common/version.rb
CHANGED
data/lib/tocxx.rb
CHANGED
@@ -889,7 +889,7 @@ module Bake
|
|
889
889
|
b.source_files_compiled.each do |s|
|
890
890
|
inCompilation << File.expand_path(s, b.projectDir)
|
891
891
|
type = b.get_source_type(s)
|
892
|
-
if type != :ASM
|
892
|
+
if type != :ASM && b.object_files && b.object_files.has_key?(s)
|
893
893
|
o = b.object_files[s]
|
894
894
|
dep_filename = b.calcDepFile(o, type)
|
895
895
|
dep_filename_conv = b.calcDepFileConv(dep_filename)
|