Revert "[build] Use mkdir -p portability macros"

This reverts commit 03c37f56b2.

The AC_PROG_MKDIR_P is also one of those autoconf macros defined
in newer versions only.  Since we use mkdir -p in releasing scripts
only, it's not a big deal if it's not portable.
This commit is contained in:
Behdad Esfahbod 2008-09-24 13:17:22 -04:00
parent b5b1134c2c
commit 9fc745ae9f
2 changed files with 1 additions and 2 deletions

View file

@ -86,7 +86,7 @@ release-check: \
$(MAKE) $(AM_MAKEFLAGS) distcheck
release-upload: $(tar_file) $(sha1_file) $(gpg_file)
$(mkdir_p) releases
mkdir -p releases
scp $(tar_file) $(sha1_file) $(gpg_file) $(RELEASE_UPLOAD_HOST):$(RELEASE_UPLOAD_DIR)
mv $(tar_file) $(sha1_file) $(gpg_file) releases
ssh $(RELEASE_UPLOAD_HOST) "rm -f $(RELEASE_UPLOAD_DIR)/LATEST-$(PACKAGE)-[0-9]* && ln -s $(tar_file) $(RELEASE_UPLOAD_DIR)/LATEST-$(PACKAGE)-$(VERSION)"

View file

@ -2,7 +2,6 @@
AC_PATH_PROG(FIND, find)
AC_PATH_PROG(XARGS, xargs)
AC_PROG_MKDIR_P
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX dnl required for BeOS (and cannot be a conditional dependency)