tools/userland-unpack
changeset 5477 5eabbdf042bc
parent 3770 ca450a806cc1
child 5682 94c0ca64c022
--- a/tools/userland-unpack	Thu Feb 18 08:19:13 2016 -0800
+++ b/tools/userland-unpack	Tue Feb 16 14:56:03 2016 -0800
@@ -19,7 +19,7 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
 #
 #
 # unpack.py - an archive unpack utility
@@ -49,7 +49,8 @@
 	elif (re.search("(\.zip)$", filename) != None):
 		uncompress = "/usr/bin/unzip -qo"
 	elif (re.search("(\.gem)$", filename) != None):
-		uncompress = "/usr/bin/gem unpack"
+                ruby_ver = os.getenv('RUBY_VERSION', '')
+		uncompress = "/usr/ruby/" + ruby_ver + "/bin/gem unpack"
 
 	unpack = " | gtar -xf -"