File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 2
2
PREFIX = notspecified
3
3
BINDIR = $(PREFIX ) /bin
4
4
INSTALLDIR = $(PREFIX ) /lib/ruby/shared/rubygems/defaults
5
+ INSTALLDIR9000 = $(PREFIX ) /lib/ruby/stdlib/rubygems/defaults
5
6
OLDINSTALLDIR = $(PREFIX ) /lib/ruby/site_ruby/1.8/rubygems/defaults
6
7
7
8
ifeq (true,$(shell test -x $(BINDIR ) /jruby && echo true) )
@@ -41,7 +42,12 @@ install:
41
42
@if [ x$( PREFIX) = xnotspecified ]; then echo " Please define where to install by passing PREFIX=<jruby-home>." ; exit 1; fi
42
43
@if [ ! -w $( INSTALLDIR) ]; then \
43
44
if [ ! -w $( OLDINSTALLDIR) ]; then \
44
- echo " Neither '$( INSTALLDIR) ' nor '$( OLDINSTALLDIR) ' exist and are writable" ; exit 1; \
45
+ if [ ! -w $( INSTALLDIR9000) ]; then \
46
+ echo " Neither '$( INSTALLDIR9000) ' nor '$( INSTALLDIR) ' nor '$( OLDINSTALLDIR) ' exist and are writable" ; exit 1; \
47
+ else \
48
+ echo " cp ./lib/rubygems/defaults/jruby_native.rb $( INSTALLDIR9000) " ; \
49
+ cp ./lib/rubygems/defaults/jruby_native.rb $(INSTALLDIR9000 ) ; \
50
+ fi ; \
45
51
else \
46
52
echo " cp ./lib/rubygems/defaults/jruby_native.rb $( OLDINSTALLDIR) " ; \
47
53
cp ./lib/rubygems/defaults/jruby_native.rb $(OLDINSTALLDIR ) ; \
Original file line number Diff line number Diff line change 1
1
module JRubyLauncher
2
- VERSION = "1.1.0 "
2
+ VERSION = "1.1.1 "
3
3
end
Original file line number Diff line number Diff line change 6
6
#ifndef _VERSION_H_
7
7
#define _VERSION_H_
8
8
9
- #define JRUBY_LAUNCHER_VERSION "1.1.0 "
9
+ #define JRUBY_LAUNCHER_VERSION "1.1.1 "
10
10
11
11
#endif // ! _VERSION_H_
You can’t perform that action at this time.
0 commit comments