On 15.08.2007, at 01:37, Jean-Marc Lasgouttes wrote:
Andreas Neustifter <[EMAIL PROTECTED]> writes:
Yes, svn st --no-ignore showed completely no output. (This would have
listed all the files that are not versioned, even the files that
would be usually ignored....)
I was thinking about the built files, actually. Also, what is the
configure procedure that you followed?
I did almost the same as Mael, although I ensured that there is
nothing wrong by deleting all files that are not in the (serverside-)
repository:
$> for i in `svn st --no-ignore | grep ^? | cut -b 8-`; do rm -rf $i;
done
$> for i in `svn st --no-ignore | grep ^I | cut -b 8-`; do rm -rf $i;
done
$> svn revert -R .
(That leaves me with only the files that svn co ... would create, but
without the wait.)
The I did (exactly as in INSTALL.MacOS):
$> export LDFLAGS="-framework Carbon -framework OpenGL -framework AGL
-framework QuickTime -framework Cocoa"
$> ./autogen.sh
$> ./configure --prefix=/Applications/_eigene/LyX-svn.app --with-
version-suffix=-1.5-svn --without-x --with-qt4-dir=/opt/local --with-
included-gettext --enable-optimization=-O2 --disable-stdlib-debug
$> make
$> make install-strip
Andi