diff options
| author | Tom Tromey <tromey@redhat.com> | 2005-11-08 21:58:43 +0000 |
|---|---|---|
| committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-11-08 21:58:43 +0000 |
| commit | 246b053811f4b2fc3187f593fc12b47187f2bad9 (patch) | |
| tree | 8bc0f2b3a1278581c38b5a26c927ec1a06a57c30 /libjava/gnu/classpath/SystemProperties.java | |
| parent | f9918968b1d6d4fc5071eea53c387fef45c2bf07 (diff) | |
| download | gcc-246b053811f4b2fc3187f593fc12b47187f2bad9.zip gcc-246b053811f4b2fc3187f593fc12b47187f2bad9.tar.gz gcc-246b053811f4b2fc3187f593fc12b47187f2bad9.tar.bz2 | |
re PR libgcj/24587 (libgcj should set gnu.classpath.version system property)
PR libgcj/24587:
* gnu/classpath/SystemProperties.java: Set gnu.classpath.version.
From-SVN: r106659
Diffstat (limited to 'libjava/gnu/classpath/SystemProperties.java')
| -rw-r--r-- | libjava/gnu/classpath/SystemProperties.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libjava/gnu/classpath/SystemProperties.java b/libjava/gnu/classpath/SystemProperties.java index 46a9e6b..001663f 100644 --- a/libjava/gnu/classpath/SystemProperties.java +++ b/libjava/gnu/classpath/SystemProperties.java @@ -70,6 +70,9 @@ public class SystemProperties { insertSystemProperties(defaultProperties); + defaultProperties.put("gnu.classpath.version", + Configuration.CLASSPATH_VERSION); + // Set base URL if not already set. if (defaultProperties.get("gnu.classpath.home.url") == null) defaultProperties.put("gnu.classpath.home.url", |
