SF.net SVN: geany-plugins:[967] trunk/geany-plugins/wscript

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Sep 30 19:15:29 UTC 2009


Revision: 967
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=967&view=rev
Author:   eht16
Date:     2009-09-30 19:15:29 +0000 (Wed, 30 Sep 2009)

Log Message:
-----------
We need the dot for proper building (e.g. on Windows).

Modified Paths:
--------------
    trunk/geany-plugins/wscript

Modified: trunk/geany-plugins/wscript
===================================================================
--- trunk/geany-plugins/wscript	2009-09-30 19:14:01 UTC (rev 966)
+++ trunk/geany-plugins/wscript	2009-09-30 19:15:29 UTC (rev 967)
@@ -366,7 +366,7 @@
 		bld.new_task_gen(
 			features		= 'cc cshlib',
 			source			= lua_sources,
-			includes		= p.includes,
+			includes		= '. %s' % p.includes,
 			target			= 'libgeanylua',
 			uselib			= libs,
 			install_path	= '${G_PREFIX}/lib/geany-plugins/geanylua' if is_win32
@@ -389,7 +389,7 @@
 		bld.new_task_gen(
 			features	= 'cc cprogram',
 			source		= [ 'geanygdb/src/ttyhelper.c' ],
-			includes	= p.includes,
+			includes	= '. %s' % p.includes,
 			target		= 'ttyhelper',
 			uselib		= libs,
 			install_path = '${TTYHELPERDIR}'
@@ -425,7 +425,7 @@
 		t = bld.new_task_gen(
 			features		= 'cc cshlib',
 			source			= p.sources,
-			includes		= p.includes,
+			includes		= '. %s' % p.includes,
 			target			= p.name,
 			uselib			= libs,
 			install_path	= '${G_PREFIX}/lib' if is_win32 else '${LIBDIR}/geany/'


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list