diff options
| author | nyamatongwe <unknown> | 2010-04-22 09:20:32 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-04-22 09:20:32 +0000 | 
| commit | 552cb2390c71235d92862897f593130211db0c6a (patch) | |
| tree | e8d0acdff3c5f04d3f6ebc87f3a9db74d766429e | |
| parent | ad8e3b7b20b3b7ad4c3b6cc573bd0642d601c4ef (diff) | |
| download | scintilla-mirror-552cb2390c71235d92862897f593130211db0c6a.tar.gz | |
Stop trying to make gtk/scintilla.mak as it is no longer included.
| -rw-r--r-- | src/LexGen.py | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/src/LexGen.py b/src/LexGen.py index 571332e6e..c73699c58 100644 --- a/src/LexGen.py +++ b/src/LexGen.py @@ -219,7 +219,7 @@ def ciCompare(a,b):  def ciKey(a):      return a.lower() -     +  def sortListInsensitive(l):      try:    # Try key function          l.sort(key=ciKey) @@ -255,9 +255,9 @@ def RegenerateAll():      sortListInsensitive(documentProperties)      propertiesHTML = []      for k in documentProperties: -        propertiesHTML.append("\t<tr>\n\t<td>%s</td>\n\t<td>%s</td>\n\t</tr>" %  +        propertiesHTML.append("\t<tr>\n\t<td>%s</td>\n\t<td>%s</td>\n\t</tr>" %              (k, propertyDocuments[k])) -         +      # Find all the SciTE properties files      otherProps = ["abbrev.properties", "Embedded.properties", "SciTEGlobal.properties", "SciTE.properties"]      if os.path.exists(root + "scite"): @@ -275,7 +275,6 @@ def RegenerateAll():      # extracted from the Scintilla source ZIP (typically created on      # Windows).      Regenerate(root + "scintilla/gtk/makefile", "#", LF, lexFiles) -    Regenerate(root + "scintilla/gtk/scintilla.mak", "#", NATIVE, lexFiles)      Regenerate(root + "scintilla/macosx/makefile", "#", LF, lexFiles)      if os.path.exists(root + "scite"):          Regenerate(root + "scite/win32/makefile", "#", NATIVE, lexFiles, propFiles) | 
