mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-01 00:58:02 +02:00
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:
parent
b5b1134c2c
commit
9fc745ae9f
2 changed files with 1 additions and 2 deletions
|
|
@ -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)"
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue