1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in, Makefile.in (MAKEDIRS): used MKDIR_P instead of

as_mkdir_p.  [ruby-dev:39063]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@24525 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-08-13 07:20:16 +00:00
parent 376b12bba8
commit 2c2b5134d2
3 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Thu Aug 13 16:20:07 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in, Makefile.in (MAKEDIRS): used MKDIR_P instead of
as_mkdir_p. [ruby-dev:39063]
Wed Aug 12 00:04:33 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/digest/sha2/sha2.h: need to include defs.h instead of inttypes.h

View file

@ -89,7 +89,7 @@ AS = @AS@
ASFLAGS = @ASFLAGS@
SET_LC_MESSAGES = env LC_MESSAGES=C
MAKEDIRS = @MAKEDIRS@
MAKEDIRS = @MKDIR_P@
OBJEXT = @OBJEXT@
MANTYPE = @MANTYPE@

View file

@ -237,17 +237,21 @@ esac
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_MKDIR_P
# checks for UNIX variants that set C preprocessor variables
AC_USE_SYSTEM_EXTENSIONS
AC_SUBST(RM, ['rm -f'])
AC_SUBST(CP, ['cp'])
if $as_mkdir_p; then
AC_SUBST(MAKEDIRS, ['mkdir -p'])
if test "x$MKDIR_P" != "x -d"; then
MAKEDIRS="$MKDIR_P"
elif test -n "$INSTALL"; then
MAKEDIRS="$INSTALL -d"
else
AC_SUBST(MAKEDIRS, ['install -d'])
MAKEDIRS='install -d'
fi
AC_SUBST(MAKEDIRS)
dnl check for large file stuff
mv confdefs.h confdefs1.h