changeset in /hg/icedtea6: Fix use of find which breaks on Solaris.
Andrew John Hughes
gnu_andrew at member.fsf.org
Tue Dec 9 06:43:17 PST 2008
changeset f22738446a8f in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=f22738446a8f
description:
Fix use of find which breaks on Solaris.
2008-12-09 Andrew John Hughes <gnu_andrew at member.fsf.org>
* Makefile.am:
Don't use find to locate the hotspot directory,
explicitly use 'hotspot-' plus the changeset.
diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
Makefile.am | 2 +-
diffs (25 lines):
diff -r a8303cf14c13 -r f22738446a8f ChangeLog
--- a/ChangeLog Tue Dec 09 08:27:15 2008 +0000
+++ b/ChangeLog Tue Dec 09 14:42:57 2008 +0000
@@ -1,3 +1,9 @@ 2008-12-09 Gary Benson <gbenson at redhat
+2008-12-09 Andrew John Hughes <gnu_andrew at member.fsf.org>
+
+ * Makefile.am:
+ Don't use find to locate the hotspot directory,
+ explicitly use 'hotspot-' plus the changeset.
+
2008-12-09 Gary Benson <gbenson at redhat.com>
* contrib/jck/compile-native-code.sh: Fix library paths.
diff -r a8303cf14c13 -r f22738446a8f Makefile.am
--- a/Makefile.am Tue Dec 09 08:27:15 2008 +0000
+++ b/Makefile.am Tue Dec 09 14:42:57 2008 +0000
@@ -652,7 +652,7 @@ if WITH_ALT_HSBUILD
rm -rf openjdk/hotspot ; \
$(TAR) xf $(HOTSPOT_SRC_ZIP) ; \
chmod -R ug+w hotspot-* ; \
- mv $$(find -maxdepth 1 -name 'hotspot-*' -type d) openjdk/hotspot ; \
+ mv hotspot-$$(cat $(abs_top_srcdir)/hotspot.map|grep $(HSBUILD)|cut -f2) openjdk/hotspot ; \
fi
endif
if WITH_CACAO
More information about the distro-pkg-dev
mailing list