mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
I have updated the community/erlang package to version 20.0.5, and changed the APKBUILD file to pull the source from github.com/erlang/otp instead of erlang.com as they distribute "older" releases there. Three applications were removed upstream (and subsequently here): - erlang-percept (concurrency profiling tool) - erlang-typer (type annotator) - erlang-gs (graphics system)
58 lines
1.5 KiB
Diff
58 lines
1.5 KiB
Diff
From: Peter Lemenkov <lemenkov@gmail.com>
|
|
Date: Sat, 19 Jun 2010 09:59:39 +0400
|
|
Subject: [PATCH] Do not install nteventlog and related doc-files on non-win32
|
|
systems
|
|
|
|
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
|
|
|
|
--- a/lib/os_mon/doc/src/Makefile
|
|
+++ b/lib/os_mon/doc/src/Makefile
|
|
@@ -36,12 +36,17 @@
|
|
# Target Specs
|
|
# ----------------------------------------------------
|
|
XML_APPLICATION_FILES = ref_man.xml
|
|
+ifeq ($(findstring win32,$(TARGET)),win32)
|
|
+NTEVENTLOG_DOCFILE=nteventlog.xml
|
|
+else
|
|
+NTEVENTLOG_DOCFILE=
|
|
+endif
|
|
XML_REF3_FILES = cpu_sup.xml \
|
|
disksup.xml \
|
|
memsup.xml \
|
|
os_mon_mib.xml \
|
|
os_sup.xml \
|
|
- nteventlog.xml
|
|
+ $(NTEVENTLOG_DOCFILE)
|
|
|
|
XML_REF6_FILES = os_mon_app.xml
|
|
|
|
--- a/lib/os_mon/src/Makefile
|
|
+++ b/lib/os_mon/src/Makefile
|
|
@@ -34,8 +34,13 @@
|
|
# ----------------------------------------------------
|
|
# Target Specs
|
|
# ----------------------------------------------------
|
|
+ifeq ($(findstring win32,$(TARGET)),win32)
|
|
+NTEVENTLOG=nteventlog
|
|
+else
|
|
+NTEVENTLOG=
|
|
+endif
|
|
MODULES= disksup memsup cpu_sup os_mon os_mon_mib os_sup os_mon_sysinfo \
|
|
- nteventlog
|
|
+ $(NTEVENTLOG)
|
|
|
|
INCLUDE=../include
|
|
CSRC=../c_src
|
|
@@ -79,7 +84,11 @@
|
|
# ----------------------------------------------------
|
|
|
|
$(APP_TARGET): $(APP_SRC) ../vsn.mk
|
|
+ifeq ($(findstring win32,$(TARGET)),win32)
|
|
$(vsn_verbose)sed -e 's;%VSN%;$(VSN);' $< > $@
|
|
+else
|
|
+ $(vsn_verbose)sed -e 's;%VSN%;$(VSN);;s;,\s*nteventlog;;' $< > $@
|
|
+endif
|
|
|
|
$(APPUP_TARGET): $(APPUP_SRC) ../vsn.mk
|
|
$(vsn_verbose)sed -e 's;%VSN%;$(VSN);' $< > $@
|