From: Florent G. <li...@fg...> - 2012-08-16 09:41:57
|
Dannes Wessels wrote: Hi, > Old URL: http://exist.svn.sourceforge.net/svnroot/exist > New URL: https://svn.code.sf.net/p/exist/code/ > We need to figure out how to 'switch' your local copies.... I've just made a diff of my changes, made a new checkout, applied the patch, and build again. Everything went fine! By the way, I noticed I had some changes in order to build in Cygwin, which are probably worth checking in. The following is at the end of build.sh, right after the var JAVA_ENDORSED_DIRS: if uname -a | grep -i cygwin >/dev/null; then EXIST_HOME="`cygpath -m $EXIST_HOME`" ANT_HOME="`cygpath -m $ANT_HOME`" JAVA_ENDORSED_DIRS="`cygpath -m $JAVA_ENDORSED_DIRS`" LOCALCLASSPATH="`cygpath -m -p $LOCALCLASSPATH`" echo "Modified paths because running on Cygwin:" echo " EXIST_HOME: $EXIST_HOME" echo " ANT_HOME: $ANT_HOME" echo " JAVA_ENDORSED_DIRS: $JAVA_ENDORSED_DIRS" echo " LOCALCLASSPATH: $LOCALCLASSPATH" fi and in bin/functions.d/eXist-settings.sh, in get_exist_home(), I've changed: (cd $(/usr/bin/dirname "$p") ; /bin/pwd) to: if uname -a | grep -i cygwin >/dev/null; then (cd $(/usr/bin/dirname "$p") ; cygpath -m `/bin/pwd`) else (cd $(/usr/bin/dirname "$p") ; /bin/pwd) fi Regards, -- Florent Georges http://fgeorges.org/ http://h2oconsulting.be/ |