Skip to content

Commit

Permalink
* Makefile.in (clean-ext): fixed directories to be removed.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Aug 6, 2010
1 parent 775188a commit b4ba3ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Fri Aug 6 18:56:14 2010 Nobuyoshi Nakada <[email protected]>

* Makefile.in (clean-ext): fixed directories to be removed.

Fri Aug 6 17:42:12 2010 NARUSE, Yui <[email protected]>

* enc/depend: add space at the begginig of @ignore_error.
Expand Down
8 changes: 4 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,16 @@ distclean-rdoc:
clean-ext distclean-ext realclean-ext::
@cd ext 2>/dev/null || exit 0; set dummy `echo "${EXTS}" | tr , ' '`; shift; \
test "$$#" = 0 && set .; \
set dummy `for dir do \
find $$dir -name Makefile | sed 's:^\./::;s:/Makefile$$:~:' | sort | sed 's:~$$::'; \
done`; shift; \
set dummy `\
find "$$@" -name Makefile -print | sed 's:^\./::;s:/Makefile$$:~:' | sort | sed 's:~$$::'; \
`; shift; \
cd ..; \
for dir do \
echo $(@:-ext=)ing "$$dir"; \
(cd "ext/$$dir" && exec $(MAKE) $(MFLAGS) $(@:-ext=)) && \
case "$@" in \
*distclean-ext*|*realclean-ext*) \
$(RMDIRS) "$$dir" 2> /dev/null || true;; \
$(RMDIRS) "ext/$$dir" 2> /dev/null || true;; \
esac; \
done

Expand Down

0 comments on commit b4ba3ba

Please sign in to comment.