forked from msys2/MSYS2-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
autoconf2.13/0001-autoconf-2.13-version-specific-share-directory.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters