Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.22 KB | None | 0 0
  1. --- eclim_1.7.3/ant/build.gant  2012-03-01 10:41:46.000000000 -0500
  2. +++ ../build.gant   2012-03-22 23:05:58.840883320 -0400
  3. @@ -145,7 +145,7 @@ target(name: 'build.vim'){
  4.  
  5.  target(name: 'deploy'){
  6.    depends('deploy.eclipse', 'deploy.vim')
  7. -  mkdir(dir: '${user.home}/.eclim/resources/ext')
  8. +  mkdir(dir: '${vim.files}/eclim/resources/ext')
  9.  }
  10.  
  11.  target(name: 'deploy.eclipse'){
  12. @@ -427,7 +427,7 @@ target(name: 'vimdocs'){
  13.    mkdir(dir: 'build/doc/vimdocs')
  14.  
  15.    // generate site documention via sphinx
  16. -  exec(executable: 'sphinx-build', failonerror: true, dir: '.'){
  17. +  exec(executable: 'sphinx-build2', failonerror: true, dir: '.'){
  18.      arg(line: '${sphinx.args} -b vimdoc doc/content build/doc/vimdocs')
  19.    }
  20.  
  21. @@ -657,8 +657,8 @@ def initPlugins(){
  22.    defaults.each{ name -> pluginInclude(name)}
  23.  
  24.    // find all the available eclipse features
  25. -  featurePaths = [new File(getVariable('eclipse') + '/features')]
  26. -  dropins = new File(getVariable('eclipse') + '/dropins')
  27. +  featurePaths = [new File('/usr/share/eclipse/features')]
  28. +  dropins = new File('/usr/share/eclipse/dropins')
  29.    if (dropins.exists()){
  30.      dropins.eachDir{ dropin ->
  31.        featurePaths << new File(dropin.getAbsolutePath() + '/eclipse/features')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement