changeset 2633:c8821d8403ff

Fix accidental inclusion of hardcoded path. 2013-05-16 Andrew John Hughes <gnu.andrew@member.fsf.org> * javac.in: Fix accidental inclusion of hardcoded path.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Thu, 16 May 2013 14:27:22 +0100
parents 5554ebb0913a
children bf48618cb792
files ChangeLog javac.in
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed May 15 20:17:08 2013 +0100
+++ b/ChangeLog	Thu May 16 14:27:22 2013 +0100
@@ -1,3 +1,8 @@
+2013-05-16  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	* javac.in: Fix accidental inclusion of
+	hardcoded path.
+
 2013-05-15  Andrew John Hughes  <gnu.andrew@member.fsf.org>
 
 	PR716: IcedTea7 should bootstrap with IcedTea6
--- a/javac.in	Wed May 15 20:17:08 2013 +0100
+++ b/javac.in	Thu May 16 14:27:22 2013 +0100
@@ -20,7 +20,7 @@
 my @bcoption;
 my @bcoptions = grep {$_ =~ '^-Xbootclasspath/p:' } @ARGV;
 my $bc = $bcoptions[0];
-my $systembc = glob '/home/andrew/builder/icedtea7/bootstrap/jdk1.6.0/jre/lib/rt.jar';
+my $systembc = glob '@abs_top_builddir@/bootstrap/jdk1.6.0/jre/lib/rt.jar';
 if ($bc)
 {
     $bc =~ s/^[^:]*://;