On Wednesday 10 March 2010 15:02, Bart wrote:
> Hi,
>
> I just update my fpc to 2.4.0, because current lazarus requires fpc
> 2.2.4, and my old lazarus (r22593) still has fpc 2.2.4.
> (I used fpc-2.4.0.i386-linux.tar and installed it with install.sh to
> /usr/local as I have done before)
>
> Then I did:
> [code]
> b...@simenon:~/svnroot/lazarus> svn update
>  ...
> Updated to revision 23919.
> b...@simenon:~/svnroot/lazarus> make clean all
> Makefile:3593: *** Need "lazarus_0.9.29.orig.tar.gz" to build for
> DEBBUILD = > 1.  Stop.
> [/code]
>
> I've done this (rebuilding lazarus) hundreds of times before with this
> syntax, and I never came across this error before.
>
> What is this DEBBUILD (building a debian package?).
>
> Any help?
>
> (I'm running Suse 10.0 as my OS)

Patch for Makefile  is attached (I have same problem with old fedora 3). Seem 
that older distros (like fedora 3,4, Suse 10.0 etc) cannot compile lazarus 
without it.
Hope it helps.

zeljko

Index: Makefile.fpc
===================================================================
--- Makefile.fpc	(révision 22719)
+++ Makefile.fpc	(copie de travail)
@@ -188,11 +188,14 @@
 ifeq (${DEBBUILD},1)
 DEBUSESVN=1
 endif
+ifeq (${DEBBUILD},)
+DEBUSESVN=1
+endif
 ifdef SNAPSHOT
 DEBUSESVN=1
 endif
 ifndef DEBUSESVN
-$(error Need "${DEBSRC_ORIG}.tar.gz" to build for DEBBUILD = ${DEBBUILD}> 1)
+$(error Need "${DEBSRC_ORIG}.tar.gz" to build for DEBBUILD = "${DEBBUILD}" > 1)
 endif
 endif
 ifndef SIGN
Index: Makefile
===================================================================
--- Makefile	(révision 22719)
+++ Makefile	(copie de travail)
@@ -3586,11 +3586,14 @@
 ifeq (${DEBBUILD},1)
 DEBUSESVN=1
 endif
+ifeq (${DEBBUILD},)
+DEBUSESVN=1
+endif
 ifdef SNAPSHOT
 DEBUSESVN=1
 endif
 ifndef DEBUSESVN
-$(error Need "${DEBSRC_ORIG}.tar.gz" to build for DEBBUILD = ${DEBBUILD}> 1)
+$(error Need "${DEBSRC_ORIG}.tar.gz" to build for DEBBUILD = "${DEBBUILD}" > 1)
 endif
 endif
 ifndef SIGN
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to