Guest User

Untitled

a guest
Apr 10th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. ==== //depot/main/Apps/Komodo-devel/src/modules/spellcheck/Conscript#3 - /data/home/ACTIVEDND/ericp/main/Apps/Komodo-devel/src/modules/spellcheck/Conscript ====
  2. @@ -34,9 +34,13 @@
  3. {'KOMODO_SHORT_VERSION' => $komodoShortVersion});
  4.  
  5.  
  6. -# create the jar and then the xpi file
  7. -$cons->Command
  8. -(
  9. +if ($buildFlavour ne "full") {
  10. +$cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/install.rdf", 'install.rdf');
  11. +$cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/chrome.manifest", 'devbuild.manifest');
  12. +} else {
  13. + # create the jar and then the xpi file
  14. + $cons->Command
  15. + (
  16. ["komodospellchecker.xpi", "komodospellchecker.jar"],
  17. # needed for 1.8 extensions
  18. "install.rdf",
  19. @@ -56,8 +60,9 @@
  20. $unsiloedPythonExe bin/run-in-dir.py %1:d zip -Dr komodospellchecker.jar content
  21. $unsiloedPythonExe bin/run-in-dir.py %1:d zip komodospellchecker.xpi komodospellchecker.jar install.rdf chrome.manifest
  22. )
  23. - );
  24. -
  25. -$cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/komodospellchecker.jar", 'komodospellchecker.jar');
  26. -$cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/install.rdf", 'install.rdf');
  27. -$cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/chrome.manifest", 'chrome.manifest');
  28. + );
  29. + $cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/komodospellchecker.jar", 'komodospellchecker.jar');
  30. + $cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/install.rdf", 'install.rdf');
  31. + $cons->InstallAs("$mozExtensionDir/komodospellchecker\@ActiveState.com/chrome.manifest", 'chrome.manifest');
  32. + $cons->Install("$supportDir/modules", 'komodospellchecker.xpi');
  33. +}
Add Comment
Please, Sign In to add comment