ruby-changes:72900
From: Nobuyoshi <ko1@a...>
Date: Thu, 11 Aug 2022 19:05:48 +0900 (JST)
Subject: [ruby-changes:72900] 0c9803b0fd (master): The "gems" build directory was rename as ".bundle"
https://git.ruby-lang.org/ruby.git/commit/?id=0c9803b0fd From 0c9803b0fdfd17981bd9f59767adab0207c3a74d Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Thu, 11 Aug 2022 17:09:17 +0900 Subject: The "gems" build directory was rename as ".bundle" --- common.mk | 12 ++++++------ template/Makefile.in | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/common.mk b/common.mk index 7e7e0bb67a..9f89e0ec8a 100644 --- a/common.mk +++ b/common.mk @@ -687,18 +687,18 @@ realclean-platform: distclean-platform https://github.com/ruby/ruby/blob/trunk/common.mk#L687 realclean-spec: distclean-spec realclean-rubyspec: realclean-spec -clean-ext:: ext/clean gems/clean timestamp/clean -distclean-ext:: ext/distclean gems/distclean timestamp/distclean -realclean-ext:: ext/realclean gems/realclean timestamp/realclean +clean-ext:: ext/clean .bundle/clean timestamp/clean +distclean-ext:: ext/distclean .bundle/distclean timestamp/distclean +realclean-ext:: ext/realclean .bundle/realclean timestamp/realclean ext/clean.mk ext/distclean.mk ext/realclean.mk:: ext/clean:: ext/clean.mk ext/distclean:: ext/distclean.mk ext/realclean:: ext/realclean.mk -timestamp/clean:: ext/clean gems/clean -timestamp/distclean:: ext/distclean gems/distclean -timestamp/realclean:: ext/realclean gems/realclean +timestamp/clean:: ext/clean .bundle/clean +timestamp/distclean:: ext/distclean .bundle/distclean +timestamp/realclean:: ext/realclean .bundle/realclean timestamp/clean timestamp/distclean timestamp/realclean:: $(Q)$(RM) $(TIMESTAMPDIR)/.*.time $(TIMESTAMPDIR)/$(arch)/.time diff --git a/template/Makefile.in b/template/Makefile.in index 756af363e4..09d69c8d9c 100644 --- a/template/Makefile.in +++ b/template/Makefile.in @@ -532,12 +532,12 @@ ext/clean.mk ext/distclean.mk ext/realclean.mk:: https://github.com/ruby/ruby/blob/trunk/template/Makefile.in#L532 ext/clean:: ext/clean.sub ext/distclean:: ext/distclean.sub ext/realclean:: ext/realclean.sub -gems/clean:: gems/clean.sub -gems/distclean:: gems/distclean.sub -gems/realclean:: gems/realclean.sub +.bundle/clean:: .bundle/clean.sub +.bundle/distclean:: .bundle/distclean.sub +.bundle/realclean:: .bundle/realclean.sub ext/clean.sub ext/distclean.sub ext/realclean.sub \ -gems/clean.sub gems/distclean.sub gems/realclean.sub:: +.bundle/clean.sub .bundle/distclean.sub .bundle/realclean.sub:: $(Q) set dummy `echo "${EXTS}" | tr , ' '`; shift; \ test "$$#" = 0 && set .; \ set dummy `\ @@ -553,7 +553,7 @@ gems/clean.sub gems/distclean.sub gems/realclean.sub:: https://github.com/ruby/ruby/blob/trunk/template/Makefile.in#L553 fi; \ done || true -ext/distclean ext/realclean gems/distclean gems/realclean:: +ext/distclean ext/realclean .bundle/distclean .bundle/realclean:: $(Q) set dummy `echo "${EXTS}" | tr , ' '`; shift; \ test "$$#" = 0 && set .; \ cd $(@D) 2>/dev/null && \ -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/