Skip to content
This repository was archived by the owner on Mar 8, 2021. It is now read-only.

For mono-api-info, do not use shell redirect. Use -o=... instead. #1

Merged
merged 1 commit into from
Jul 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ define BUILD_API_INFO
mkdir -p $(1)
for file in $(CORE_ASSEMBLIES); do \
$(MONO_API_INFO) $(MONO_API_INFO_LIB_DIRS) \
$(2)/v1.0/$$file.dll > $(1)/$$file.xml & \
$(2)/v1.0/$$file.dll -o=$(1)/$$file.xml & \
done ; \
wait
for file in $(TFV_ASSEMBLIES) ; do \
$(MONO_API_INFO) $(MONO_API_INFO_LIB_DIRS) \
$(2)/$(LAST_STABLE_FRAMEWORK)/$$file.dll > $(1)/$$file.xml & \
$(2)/$(LAST_STABLE_FRAMEWORK)/$$file.dll -o=$(1)/$$file.xml & \
done ; \
wait
endef
Expand Down Expand Up @@ -111,7 +111,7 @@ check: check-inter-api-level
continue; \
fi; \
mkdir -p "inter-apis/$$f" || true; \
$(MONO_API_INFO) $(MONO_API_INFO_LIB_DIRS) "$(XA_FRAMEWORK_DIR)/$$f/Mono.Android.dll" > "inter-apis/$$f/Mono.Android.xml" ; \
$(MONO_API_INFO) $(MONO_API_INFO_LIB_DIRS) "$(XA_FRAMEWORK_DIR)/$$f/Mono.Android.dll" -o="inter-apis/$$f/Mono.Android.xml" ; \
done

check-inter-api-level: -create-inter-api-infos
Expand Down