diff options
author | CoprDistGit <infra@openeuler.org> | 2025-04-26 14:11:13 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2025-04-26 14:11:13 +0000 |
commit | 05fb5cfdcc13fa4614739efb6078b1aaa404c9e1 (patch) | |
tree | 51dadafbd4c81241925e2eb4fb68fa7a3ccf9f54 /otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch | |
parent | f82ec8ce102520b2c70d10f958c9bc5a4ec8b089 (diff) |
automatic import of erlangopeneuler22.03_LTS_SP4
Diffstat (limited to 'otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch')
-rw-r--r-- | otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch b/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch new file mode 100644 index 0000000..3fd02f3 --- /dev/null +++ b/otp-0001-Do-not-format-man-pages-and-do-not-install-miscellan.patch @@ -0,0 +1,41 @@ +From: Peter Lemenkov <lemenkov@gmail.com> +Date: Thu, 25 Feb 2010 16:45:28 +0300 +Subject: [PATCH] Do not format man-pages and do not install miscellaneous + utilities for dealing with man-pages. + +Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> + +diff --git a/erts/etc/common/Makefile.in b/erts/etc/common/Makefile.in +index 7a2b821c46..f5f3ee69cb 100644 +--- a/erts/etc/common/Makefile.in ++++ b/erts/etc/common/Makefile.in +@@ -528,10 +528,6 @@ endif + ifneq ($(INSTALL_TOP_BIN),) + $(INSTALL_PROGRAM) $(INSTALL_TOP_BIN) "$(RELEASE_PATH)" + endif +-ifneq ($(INSTALL_MISC),) +- $(INSTALL_DIR) "$(RELEASE_PATH)/misc" +- $(INSTALL_SCRIPT) $(INSTALL_MISC) "$(RELEASE_PATH)/misc" +-endif + ifneq ($(INSTALL_SRC),) + $(INSTALL_DIR) "$(RELEASE_PATH)/erts-$(VSN)/src" + $(INSTALL_DATA) $(INSTALL_SRC) "$(RELEASE_PATH)/erts-$(VSN)/src" +diff --git a/erts/etc/unix/Install.src b/erts/etc/unix/Install.src +index 2dbf628972..5151f5130a 100644 +--- a/erts/etc/unix/Install.src ++++ b/erts/etc/unix/Install.src +@@ -142,14 +142,5 @@ cp -p ../releases/%I_SYSTEM_VSN%/start_*.boot . + cp -p ../releases/%I_SYSTEM_VSN%/no_dot_erlang.boot . + cp -p $Name.boot start.boot + cp -p ../releases/%I_SYSTEM_VSN%/$Name.script start.script +-# +-# Fixing the man pages +-# +- +-if [ -d "$ERL_ROOT/man" ] +-then +- cd "$ERL_ROOT" +- ./misc/format_man_pages "$ERL_ROOT" +-fi + + exit 0 |