Skip to content

Commit

Permalink
2010-05-28 Robert Jordan <[email protected]>
Browse files Browse the repository at this point in the history
	* configure.in: Fix mcs_topdir* for the Windows build.


svn path=/trunk/mono/; revision=158132
  • Loading branch information
robert-j committed May 28, 2010
1 parent 4fcd73d commit 8fdffec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2010-05-28 Robert Jordan <[email protected]>

* configure.in: Fix mcs_topdir* for the Windows build.

2010-05-28 Mark Probst <[email protected]>

* tools/sgen/sgen-grep-binprot.c (main): Use strtoul(), not
Expand Down
6 changes: 6 additions & 0 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,12 @@ mcs_topdir=$(cd "$srcdir/$mcsdir" && pwd)
mcs_topdir_from_srcdir='$(top_builddir)'/$mcsdir
fi

# Convert paths to Windows syntax.
if test x$cross_compiling$host_win32 = xnoyes; then
mcs_topdir=$(cygpath -m -a $mcs_topdir)
mcs_topdir_from_srcdir=$(cygpath -m -a $mcs_topdir_from_srcdir)
fi

## Maybe should also disable if mcsdir is invalid. Let's punt the issue for now.
AM_CONDITIONAL(BUILD_MCS, [test x$cross_compiling = xno && test x$enable_mcs_build != xno])

Expand Down

0 comments on commit 8fdffec

Please sign in to comment.