summaryrefslogtreecommitdiff
path: root/build/Makefile.am.releasing
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-09-23 17:15:07 -0400
committerBehdad Esfahbod <behdad@behdad.org>2008-09-23 17:15:07 -0400
commit03c37f56b2d3ecc0e197194364b216183dacc24a (patch)
treea6d9b73f82cb57cdb81859a6b0060561235a8bf0 /build/Makefile.am.releasing
parentae0511fbbe6c01b5fe8dfa531b3eaa791314931f (diff)
[build] Use mkdir -p portability macros
Diffstat (limited to 'build/Makefile.am.releasing')
-rw-r--r--build/Makefile.am.releasing2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Makefile.am.releasing b/build/Makefile.am.releasing
index eed5dbd6..301d96c6 100644
--- a/build/Makefile.am.releasing
+++ b/build/Makefile.am.releasing
@@ -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)"