summaryrefslogtreecommitdiff
path: root/parallel/openmpi/patches/patch-ai
diff options
context:
space:
mode:
Diffstat (limited to 'parallel/openmpi/patches/patch-ai')
-rw-r--r--parallel/openmpi/patches/patch-ai53
1 files changed, 0 insertions, 53 deletions
diff --git a/parallel/openmpi/patches/patch-ai b/parallel/openmpi/patches/patch-ai
deleted file mode 100644
index 34b3c66ea90..00000000000
--- a/parallel/openmpi/patches/patch-ai
+++ /dev/null
@@ -1,53 +0,0 @@
-$NetBSD: patch-ai,v 1.6 2016/10/23 14:02:28 asau Exp $
-
---- orte/etc/Makefile.in.orig 2016-09-02 01:30:19.000000000 +0000
-+++ orte/etc/Makefile.in
-@@ -1515,6 +1515,7 @@ spml_ucx_LDFLAGS = @spml_ucx_LDFLAGS@
- spml_ucx_LIBS = @spml_ucx_LIBS@
- srcdir = @srcdir@
- sysconfdir = @sysconfdir@
-+sysconfexampledir = $(pkgdatadir)/examples
- target = @target@
- target_alias = @target_alias@
- target_cpu = @target_cpu@
-@@ -1731,19 +1732,19 @@ uninstall-am: uninstall-local
- # details why the mkdir is in install-data-local.
-
- install-data-local:
-- $(MKDIR_P) $(DESTDIR)$(sysconfdir)
-+ $(MKDIR_P) $(DESTDIR)$(sysconfexampledir)
- @ p="$(orte_config_files)"; \
- for file in $$p; do \
-- if test -f $(DESTDIR)$(sysconfdir)/$$file; then \
-+ if test -f $(DESTDIR)$(sysconfexampledir)/$$file; then \
- echo "******************************* WARNING ************************************"; \
- echo "*** Not installing new $$file over existing file in:"; \
-- echo "*** $(DESTDIR)$(sysconfdir)/$$file"; \
-+ echo "*** $(DESTDIR)$(sysconfexampledir)/$$file"; \
- echo "******************************* WARNING ************************************"; \
- else \
- if test -f "$$file"; then d=; else d="$(srcdir)/"; fi; \
- f="`echo $$file | sed -e 's|^.*/||'`"; \
-- echo " $(INSTALL_DATA) $$d$$file $(DESTDIR)$(sysconfdir)/$$f"; \
-- $(INSTALL_DATA) $$d$$file $(DESTDIR)$(sysconfdir)/$$f; \
-+ echo " $(INSTALL_DATA) $$d$$file $(DESTDIR)$(sysconfexampledir)/$$f"; \
-+ $(INSTALL_DATA) $$d$$file $(DESTDIR)$(sysconfexampledir)/$$f; \
- fi; \
- done
-
-@@ -1754,11 +1755,11 @@ install-data-local:
- uninstall-local:
- @ p="$(orte_config_files)"; \
- for file in $$p; do \
-- if test -f "$(DESTDIR)$(sysconfdir)/$$file"; then \
-+ if test -f "$(DESTDIR)$(sysconfexampledir)/$$file"; then \
- if test -f "$$file"; then d=; else d="$(srcdir)/"; fi; \
-- if diff "$(DESTDIR)$(sysconfdir)/$$file" "$$d$$file" > /dev/null 2>&1 ; then \
-- echo "rm -f $(DESTDIR)$(sysconfdir)/$$file" ; \
-- rm -f "$(DESTDIR)$(sysconfdir)/$$file" ; \
-+ if diff "$(DESTDIR)$(sysconfexampledir)/$$file" "$$d$$file" > /dev/null 2>&1 ; then \
-+ echo "rm -f $(DESTDIR)$(sysconfexampledir)/$$file" ; \
-+ rm -f "$(DESTDIR)$(sysconfexampledir)/$$file" ; \
- fi ; \
- fi ; \
- done