diff options
author | Anders Svensson <[email protected]> | 2011-10-19 11:55:46 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2011-10-19 17:48:47 +0200 |
commit | 6c048c57a4714e033f484ff79425ce847e9a43e9 (patch) | |
tree | 4ff86d51e8d6e3fd9e1368b81f54c2d89cad14c1 | |
parent | e89a59263762c1b625b1b054784b73112fb440a3 (diff) | |
download | otp-6c048c57a4714e033f484ff79425ce847e9a43e9.tar.gz otp-6c048c57a4714e033f484ff79425ce847e9a43e9.tar.bz2 otp-6c048c57a4714e033f484ff79425ce847e9a43e9.zip |
Dumb down release target to Solaris /usr/ucb/install
-rw-r--r-- | lib/diameter/src/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/diameter/src/Makefile b/lib/diameter/src/Makefile index 15196bc002..a057632d15 100644 --- a/lib/diameter/src/Makefile +++ b/lib/diameter/src/Makefile @@ -177,13 +177,12 @@ else include $(ERL_TOP)/make/otp_release_targets.mk endif +# Can't $(INSTALL_DIR) more than on directory at a time on Solaris. + release_spec: opt - $(INSTALL_DIR) $(RELSYSDIR)/bin \ - $(RELSYSDIR)/ebin \ - $(RELSYSDIR)/examples \ - $(RELSYSDIR)/include \ - $(RELSYSDIR)/src/dict \ - $(TARGET_DIRS:%/=$(RELSYSDIR)/src/%) + for d in bin ebin examples include src/dict $(TARGET_DIRS:%/=src/%); do \ + $(INSTALL_DIR) $(RELSYSDIR)/$$d; \ + done $(INSTALL_SCRIPT) $(BINS:%=../bin/%) $(RELSYSDIR)/bin $(INSTALL_DATA) $(TARGET_FILES) $(RELSYSDIR)/ebin $(INSTALL_DATA) $(EXAMPLES:%=../examples/%) $(RELSYSDIR)/examples |