Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Michel Perraud <jean-michel.perraud@csiro.au>2013-01-12 05:52:33 +0400
committerJean-Michel Perraud <jean-michel.perraud@csiro.au>2013-01-12 05:52:33 +0400
commit3796c282fe87b62a180ec620dc67e9e375b7094b (patch)
tree77c59e534a5c01558e2de3c25bfb775350fb30ae /Makefile.am
parent009f6521b3ac80f76d962626bc3cdd576549b90a (diff)
Add changes to the main Makefile.am, not only Makefile which is not versioned
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index a533344a76c..51d421a68eb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -161,6 +161,8 @@ win32setup:
update-csproj:
-rm msvc/scripts/order
+ -rm msvc/scripts/order.xml
+ -rm -rf msvc/scripts/inputs
-mkdir msvc/scripts/inputs
(cd runtime; make V=1 extra_targets=csproj-local)
@@ -169,16 +171,18 @@ package-inputs:
echo '<root>' >> msvc/scripts/order.xml
for i in `cat msvc/scripts/order`; do \
set `echo $$i | sed -e 's/:/ /' -e 's/.input//'`; \
- cat msvc/scripts/inputs/$$2.input | \
+ cat msvc/scripts/inputs/$$2.input | sed -e 's/\\\\/\\/g' -e 's/\\/\\\\/g' | \
(echo " <project dir=\"$$1\" library=\"$$2\">"; \
read boot; echo " <boot>$$boot</boot>"; \
read mcs; echo " <mcs>$$mcs</mcs>"; \
read flags; echo " <flags>$$flags</flags>"; \
read output; echo " <output>$$output</output>"; \
- read built; echo " <built_sources>$$built</built_sources>"; \
+ read built; echo " <built_sources>`echo $$built | sed 's/\\\/\\\\/g'`</built_sources>"; \
read libou; echo " <library_output>$$libou</library_output>"; \
read fx_ver; echo " <fx_version>$$fx_ver</fx_version>"; \
+ read profile; echo " <profile>$$profile</profile>"; \
read resp; echo " <response>$$resp</response>"; \
- echo " </project>") >> msvc/scripts/order.xml; \
+ echo " </project>") >> msvc/scripts/order.xml; \
done
echo "</root>" >> msvc/scripts/order.xml
+