[Pkg-mono-svn-commits] rev 1304 - mono/trunk/debian

Mirco Bauer meebey-guest@haydn.debian.org
Sun, 08 Aug 2004 09:55:25 -0600


Author: meebey-guest
Date: 2004-08-08 09:55:22 -0600 (Sun, 08 Aug 2004)
New Revision: 1304

Modified:
   mono/trunk/debian/rules
Log:
- removed " from variable definitions, crap Makefile stuff :)



Modified: mono/trunk/debian/rules
===================================================================
--- mono/trunk/debian/rules	2004-08-08 15:49:04 UTC (rev 1303)
+++ mono/trunk/debian/rules	2004-08-08 15:55:22 UTC (rev 1304)
@@ -7,22 +7,22 @@
 DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
 
 ifeq ($(shell dpkg-architecture -qDEB_BUILD_ARCH),sparc)
-JIT="--with-jit=no"
+JIT = --with-jit=no
 endif
 
 ifeq ($(shell dpkg-architecture -qDEB_BUILD_ARCH),s390)
-JIT="--with-jit=no --with-nptl=no"
-ATG="arch_target=s390"
+JIT = --with-jit=no --with-nptl=no
+ATG = arch_target=s390
 endif
 
 ifeq ($(shell dpkg-architecture -qDEB_BUILD_ARCH),alpha)
-JIT="--with-jit=no"
-ATG="arch_target=alpha"
+JIT = --with-jit=no
+ATG = arch_target=alpha
 endif
 
 ifeq ($(shell dpkg-architecture -qDEB_BUILD_ARCH),arm)
-JIT="--with-jit=no"
-ATG="arch_target=arm"
+JIT = --with-jit=no
+ATG = arch_target=arm
 endif
 
 VERSION = $(shell dpkg-parsechangelog | grep ^Vers | cut -d\  -f2)