changeset 280:e72345914350

fix config file for proper exclude
author John Reimer<terminal.node@gmail.com>
date Thu, 31 Jul 2008 21:56:03 -0700
parents 88f81e22e0ee
children cfecc1fcffc2 44258e0b6687
files dsss.conf dwt/dwthelper/System.d
diffstat 2 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/dsss.conf	Thu Jul 31 19:20:00 2008 -0700
+++ b/dsss.conf	Thu Jul 31 21:56:03 2008 -0700
@@ -1,9 +1,6 @@
 
 [dwt]
+exclude=dwt/internal/mozilla/
+exclude+=dwt/browser
 type=library
 
-# These directories are excluded for now
-# until browser/xpcom is ported
-
-exclude=dwt/internal/mozilla
-exclude=dwt/browser
--- a/dwt/dwthelper/System.d	Thu Jul 31 19:20:00 2008 -0700
+++ b/dwt/dwthelper/System.d	Thu Jul 31 21:56:03 2008 -0700
@@ -147,6 +147,7 @@
     public static String getProperty( String key ){
         switch( key ){
         case "os.name": return "linux";
+        case "file.separator" : return ".";
         default: return null;
         }
     }