Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
4a3b9673
Commit
4a3b9673
authored
Jul 10, 2001
by
rrt
Browse files
[project @ 2001-07-10 11:21:05 by rrt]
Fix jade detection on Windows for jades that don't understand Unix paths
parent
89d038e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
4a3b9673
...
...
@@ -569,7 +569,14 @@ FPTOOLS_DOCBOOK_CATALOG(Catalog, $JadeCmd, docs/fptools-both.dsl,
if test -z "$Catalog"; then
AC_MSG_RESULT([Warning: You will not be able to build the documentation.])
fi
Catalog=$hardtop/$Catalog
case $HostOS_CPP in
mingw32)
Catalog=`cygpath -w $hardtop/$Catalog`
;;
*)
Catalog=$hardtop/$Catalog
;;
esac
AC_SUBST(Catalog)
compress_nm=`basename $CompressCmd`
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment