diff options
author | aclement <aclement> | 2004-05-28 15:19:14 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-05-28 15:19:14 +0000 |
commit | 39c3a3bb4a0c939c1dfbc33b0ba560614b43d8a2 (patch) | |
tree | 2f96417d87488e53f1431b291b83b0434dab2b87 /build/src/$installer$ | |
parent | 6de5ccc14f5dbebd697204b6d8109a48457fcd40 (diff) | |
download | aspectj-39c3a3bb4a0c939c1dfbc33b0ba560614b43d8a2.tar.gz aspectj-39c3a3bb4a0c939c1dfbc33b0ba560614b43d8a2.zip |
Georges fixes for 61411
Diffstat (limited to 'build/src/$installer$')
-rw-r--r-- | build/src/$installer$/org/aspectj/Main.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/src/$installer$/org/aspectj/Main.java b/build/src/$installer$/org/aspectj/Main.java index 977ac46a3..ce29930bf 100644 --- a/build/src/$installer$/org/aspectj/Main.java +++ b/build/src/$installer$/org/aspectj/Main.java @@ -695,7 +695,9 @@ class InstallContext { } public boolean onWindowsPro() { - return getOS().equals("Windows NT") || getOS().equals("Windows 2000"); + return getOS().equals("Windows NT") + || getOS().equals("Windows 2000") + || getOS().equals("Windows XP"); } public boolean onMacintosh() { |