-----BEGIN PGP SIGNED MESSAGE----- On Montag, 1. Dezember 2003 06:17, Rob Lahaye wrote: > Hi, > > CVS compilation gets stuck at: > > [...] > gmake[4]: Entering directory > `/home/lahaye/SOFTWARE/lyx-devel/src/frontends/xforms' cmp -s > lyx_forms.h-tmp lyx_forms.h || {\ > rm -f lyx_forms.h ;\ > cp lyx_forms.h-tmp lyx_forms.h ;\ > } > echo timestamp > stamp-forms > if cmp -s lyx_xpm.h-tmp lyx_xpm.h || {\ > rm -f lyx_xpm.h ;\ > cp lyx_xpm.h-tmp lyx_xpm.h ;\ > } > /usr/local/bin/bash: -c: line 2: syntax error: unexpected end of file > gmake[4]: *** [stamp-xpm] Error 2 > > > Syntac error? Could it be that you should use "(...)" instead of "{...}" > here for grouping commands? > > This is up-to-date LyX-CVS on FreeBSD box.
This is always. Try attached. > Rob. Kornel - -- Kornel Benko [EMAIL PROTECTED] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iQCVAwUBP8r8t7ewfbDGmeqhAQGPFAP/SW9EOHgof7pUsSrb7RgP+fGqE2lQFsPx c3MqvNrM6SOMFoTJMudObS8g2q48+um5TLnKHW0xBnqt1D19Orp3LM9/Ntelb/0o YVSBaV+yjqpxEY9WEDoZtNkicHicv4Qhefm00zwNCVZ7GTAedOcJ2OuLsVMSABC/ 7nr8BvF5k3g= =A3KH -----END PGP SIGNATURE-----
Index: Makefile.am =================================================================== RCS file: /cvs/lyx/lyx-devel/src/frontends/xforms/Makefile.am,v retrieving revision 1.111 diff -u -r1.111 Makefile.am --- Makefile.am 2003/11/30 17:11:50 1.111 +++ Makefile.am 2003/12/01 08:31:24 @@ -194,7 +194,7 @@ @: stamp-xpm: lyx_xpm.h-tmp - if cmp -s $< lyx_xpm.h || {\ + cmp -s $< lyx_xpm.h || {\ rm -f lyx_xpm.h ;\ cp $< lyx_xpm.h ;\ }