-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configure.ac, */Makefile.am, CHANGES, README.md: converge to portable…
… make syntax (do not require fiddling with GNU make envvars on non-Linux builds) Signed-off-by: Jim Klimov <[email protected]>
- Loading branch information
Showing
6 changed files
with
50 additions
and
17 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5,8 +5,9 @@ znapzend (0.21.3) unstable; urgency=medium | |
* Extended handling of "org.znapzend:enabled=off" setting for sub-trees: now if the same intermediate dataset declares "org.znapzend:recursive=on", the disablement of znapzend handling takes place for descendants as well (previously it had effect only exactly for datasets that set "org.znapzend:enabled=off" as a local ZFS property) | ||
* Fixed CI recipes and contents for spell-checker | ||
* Added rc-script and integration documentation for FreeBSD and similar platforms | ||
* Converted configure.ac and numerous Makefile.am to avoid GNU Make syntax in favor of portability: tested with Solaris/illumos Sun make and with FreeBSD make | ||
|
||
-- Jim Klimov <[email protected]> Tue, 9 Jan 2024 13:42:28 +0100 | ||
-- Jim Klimov <[email protected]> Tue, 12 Mar 2024 13:42:28 +0100 | ||
|
||
znapzend (0.21.2) unstable; urgency=medium | ||
|
||
|
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
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Author: Tobi Oetiker <[email protected]> | ||
# License: Public Domain | ||
|
||
PM := $(shell find $(srcdir) -name "*.pm") | ||
PM = @PERL_MODULES@ | ||
|
||
datadir = $(libdir) | ||
nobase_data_DATA = $(PM) | ||
|
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 |
---|---|---|
|
@@ -2,14 +2,16 @@ | |
|
||
AUTOMAKE_OPTIONS = foreign | ||
|
||
THIRDPARTY_DIR := $(shell pwd) | ||
THIRDPARTY_DIR = $(abs_builddir) | ||
|
||
# THIRDPARTY_DIST := $(shell test -d cache && find cache -type f ) | ||
CPANSNAPV := cpanfile-$(shell $(PERL) -MConfig -e 'my $$v = $$Config{version}; $$v =~ s/\.\d+$$//; print $$v').snapshot | ||
#GNU# THIRDPARTY_DIST :+ $(shell test -d cache && find cache -type f ) | ||
# THIRDPARTY_DIST = @PERL_THIRDPARTY_DIST@ | ||
CPANSNAPV = cpanfile-@[email protected] | ||
|
||
|
||
#EXTRA_DIST = $(THIRDPARTY_DIST) $(wildcard bin/cpanm) | ||
EXTRA_DIST = bin/cpanm $(wildcard cpanfile*snapshot) | ||
#EXTRA_DIST = bin/cpanm $(wildcard cpanfile*snapshot) | ||
EXTRA_DIST = bin/cpanm cpanfile*snapshot | ||
|
||
all-local: touch | ||
|
||
|