tasque r173 - in trunk: . RtmNet src



Author: sharm
Date: Tue Dec 23 00:30:30 2008
New Revision: 173
URL: http://svn.gnome.org/viewvc/tasque?rev=173&view=rev

Log:
* tasque/src/Makefile.am:
* tasque/Makefile.include:
* tasque/RtmNet/Makefile.am: Don't hardcode gmcs; use $(GMCS) instead.
  Fixes bug #562845, patch courtesy of James Westby.

Modified:
   trunk/ChangeLog
   trunk/Makefile.include
   trunk/RtmNet/Makefile.am
   trunk/src/Makefile.am

Modified: trunk/Makefile.include
==============================================================================
--- trunk/Makefile.include	(original)
+++ trunk/Makefile.include	Tue Dec 23 00:30:30 2008
@@ -23,7 +23,7 @@
 ## Build
 
 CSC_FLAGS = -debug
-CSC = gmcs $(CSC_FLAGS) -target:exe
+CSC = $(GMCS) $(CSC_FLAGS) -target:exe
 CSC_LIB = $(CSC) -target:library
 
 ## Runtime

Modified: trunk/RtmNet/Makefile.am
==============================================================================
--- trunk/RtmNet/Makefile.am	(original)
+++ trunk/RtmNet/Makefile.am	Tue Dec 23 00:30:30 2008
@@ -1,4 +1,4 @@
-CSC = gmcs
+CSC = $(GMCS)
 
 TARGET = RtmNet.dll
 

Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am	(original)
+++ trunk/src/Makefile.am	Tue Dec 23 00:30:30 2008
@@ -1,6 +1,6 @@
 SUBDIRS = . Backends
 
-CSC = gmcs
+CSC = $(GMCS)
 
 TARGET = Tasque.exe
 WRAPPER = tasque



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]