hotssh r66 - trunk



Author: walters
Date: Fri Dec 19 03:49:54 2008
New Revision: 66
URL: http://svn.gnome.org/viewvc/hotssh?rev=66&view=rev

Log:
Further waf 1.5.1 porting: fix installation dir for python files

Modified:
   trunk/wscript

Modified: trunk/wscript
==============================================================================
--- trunk/wscript	(original)
+++ trunk/wscript	Fri Dec 19 03:49:54 2008
@@ -27,16 +27,16 @@
 def build(bld):
 	obj = bld.new_task_gen('py')
 	obj.find_sources_in_dirs(['hotssh'], exts=['.py'])
-	obj.install_path = 'hotssh'
+	obj.install_path = '${PYTHONDIR}/hotssh'
 	obj = bld.new_task_gen('py')
 	obj.find_sources_in_dirs(['hotssh/hotlib'], exts=['.py'])
-	obj.install_path = 'hotssh/hotlib'
+	obj.install_path = '${PYTHONDIR}/hotssh/hotlib'
 	obj = bld.new_task_gen('py')
 	obj.find_sources_in_dirs(['hotssh/hotlib_ui'], exts=['.py'])
-	obj.install_path = 'hotssh/hotlib_ui'
+	obj.install_path = '${PYTHONDIR}/hotssh/hotlib_ui'
 	obj = bld.new_task_gen('py')
 	obj.find_sources_in_dirs(['hotssh/hotvte'], exts=['.py'])
-	obj.install_path = 'hotssh/hotvte'
+	obj.install_path = '${PYTHONDIR}/hotssh/hotvte'
 	# process desktop.in file
 	obj=bld.new_task_gen('intltool_in')
 	obj.source  = 'hotssh.desktop.in'



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