diff options
author | Anders Svensson <[email protected]> | 2013-04-19 13:46:14 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2013-04-19 13:46:14 +0200 |
commit | cabbbf07d03466b6394bda33d9af18d9ceb44bfc (patch) | |
tree | 0d81a0f24c6f58db1cda48161b602ecf5d4f2926 | |
parent | 4e220f07593c80ba20c6ce968ae608f5363ef75b (diff) | |
parent | 3caa0fa5dc4d5a88e4ef8db67e860deecb2b49ce (diff) | |
download | otp-cabbbf07d03466b6394bda33d9af18d9ceb44bfc.tar.gz otp-cabbbf07d03466b6394bda33d9af18d9ceb44bfc.tar.bz2 otp-cabbbf07d03466b6394bda33d9af18d9ceb44bfc.zip |
Merge branch 'anders/diameter/mkdir_race/OTP-11051' into maint
* anders/diameter/mkdir_race/OTP-11051:
Fix mkdir race
-rw-r--r-- | lib/diameter/src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diameter/src/Makefile b/lib/diameter/src/Makefile index df10c33268..c0cf418f06 100644 --- a/lib/diameter/src/Makefile +++ b/lib/diameter/src/Makefile @@ -230,7 +230,7 @@ include $(ERL_TOP)/make/otp_release_targets.mk # Can't $(INSTALL_DIR) more than one directory at a time on Solaris. release_spec: opt - for d in bin ebin include src/dict; do \ + for d in bin ebin examples include src/dict; do \ $(INSTALL_DIR) "$(RELSYSDIR)/$$d"; \ done $(INSTALL_SCRIPT) $(BINS:%=../bin/%) "$(RELSYSDIR)/bin" |