Skip to content

Commit

Permalink
Merge pull request #3421 from jonahbeckford/fix-win32-wildcard
Browse files Browse the repository at this point in the history
Avoid wildcard expansion when making F# builds
  • Loading branch information
mtzguido authored Aug 28, 2024
2 parents b2e21e3 + 18f5b10 commit f062904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulib/Makefile.extract.fsharp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ MY_FSTAR=$(FSTAR) $(OTHERFLAGS) --warn_error @241 --cache_checked_modules --odir
# And then, in a separate invocation, from each .checked file we
# extract an .fs file
$(OUTPUT_DIRECTORY)/%.fs:
$(MY_FSTAR) --already_cached '*' $(subst .checked,,$(notdir $<)) --codegen $(CODEGEN) --extract_module $(basename $(notdir $(subst .checked,,$<)))
$(MY_FSTAR) --already_cached '*,' $(subst .checked,,$(notdir $<)) --codegen $(CODEGEN) --extract_module $(basename $(notdir $(subst .checked,,$<)))

.depend.extract.fsharp:
$(call msg, "DEPEND")
Expand Down

0 comments on commit f062904

Please sign in to comment.