~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Autotools/SolutionMakefileHandler.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
                                                        string path = FileService.AbsoluteToRelativePath (targetDirectory, baseDirectory);
103
103
                                                        if (path.StartsWith ("." + Path.DirectorySeparatorChar) )
104
104
                                                                path = path.Substring (2);
 
105
                                                        
 
106
                                                        AutotoolsContext.CheckSpaces (path);
105
107
                                                        subdirs.Append (" ");
106
108
                                                        subdirs.Append ( AutotoolsContext.EscapeStringForAutomake (path) );
107
109
                                                }
202
204
                        }
203
205
                        return solutionMakefile;
204
206
                }
205
 
 
 
207
                
206
208
                // utility function for finding the correct order to process directories
207
209
                List<SolutionItem> CalculateSubDirOrder (AutotoolsContext ctx, SolutionFolder folder, SolutionConfiguration config)
208
210
                {