MSYS2-packages/autoconf2.13/0001-autoconf-2.13-version-specific-share-directory.patch
Jannick ce02813bf4 autoconf2.13: move share dir from 'autoconf' to 'autoconf-2.13'
This commit aims at avoiding any interference with another autoconf release
package by keeping the library directory separate from other autoconf
release packages - WITHOUT breaking package functionality.

This approach might be consistently applied to other AUTOCONF versions
other than the latest one at the time.  Then the user can choose which
major AUTOCONF release version she wants to apply.

* PKGBUILD:
  - add and apply patch 0001-autoconf-2.13-version-specific-share-directory.patch
  - add missing dependency to PERL
* 0001-autoconf-2.13-version-specific-share-directory.patch:
  - add patch fixing library path
2020-12-11 18:05:15 +01:00

29 lines
853 B
Diff

From 64c18ba1272c0158bb53459ba78306ab0e531b90 Mon Sep 17 00:00:00 2001
Date: Fri, 11 Dec 2020 16:51:45 +0100
Subject: [PATCH] autoconf-2.13-version-specific-share-directory
* Makefile.in:
- ensure that datadir = '/usr/share/autoconf-2.13' is CONSISTENTLY
used throughout package without breaking package functionality
(to avoid infering with packages of other package release versions)
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index a6c94d4..1ffe5fe 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -49,7 +49,7 @@ bindir = @bindir@
# Directory in which to install library files.
datadir = @datadir@
-acdatadir = $(datadir)/autoconf
+acdatadir = $(datadir)/autoconf-2.13
# Directory in which to install documentation info files.
infodir = @infodir@
--
2.29.2.windows.3