mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (uncommon.mk): ignores failures at loading.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5ef37965fc
commit
93e4ba927c
3 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
||||||
Fri Oct 17 18:07:17 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Oct 17 18:14:57 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in (uncommon.mk): ignores failures at loading.
|
||||||
|
|
||||||
* test/rubygems/gemutilities.rb (RubyGemTestCase#build_rake_in):
|
* test/rubygems/gemutilities.rb (RubyGemTestCase#build_rake_in):
|
||||||
get rid of interference with other tests.
|
get rid of interference with other tests.
|
||||||
|
|
|
@ -1897,7 +1897,7 @@ dnl (
|
||||||
dnl (
|
dnl (
|
||||||
*yes*)
|
*yes*)
|
||||||
echo "include Makefile" > GNUmakefile
|
echo "include Makefile" > GNUmakefile
|
||||||
echo "include uncommon.mk" >> GNUmakefile
|
echo "-include uncommon.mk" >> GNUmakefile
|
||||||
gnumake=yes;;
|
gnumake=yes;;
|
||||||
dnl (
|
dnl (
|
||||||
*)
|
*)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
include Makefile
|
include Makefile
|
||||||
include uncommon.mk
|
-include uncommon.mk
|
||||||
|
|
||||||
ENABLE_SHARED=@ENABLE_SHARED@
|
ENABLE_SHARED=@ENABLE_SHARED@
|
||||||
DLLWRAP = @DLLWRAP@ --target=@target_os@
|
DLLWRAP = @DLLWRAP@ --target=@target_os@
|
||||||
|
|
Loading…
Reference in a new issue