Skip to content

Commit 0814387

Browse files
authored
Merge b3a4d71 into 2ad2346
2 parents 2ad2346 + b3a4d71 commit 0814387

29 files changed

+869
-1030
lines changed

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ SPELLCHECK_DIRS_MOST = \
642642
spellcheck/docs/man \
643643
spellcheck/conf \
644644
spellcheck/data \
645-
spellcheck/data/html \
645+
spellcheck/data/htmlcgi \
646646
spellcheck/scripts \
647647
spellcheck/scripts/Solaris \
648648
spellcheck/scripts/Windows \

NEWS.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ several `FSD` notifications into one executed action. [PR #3097]
180180
it), if not bundling with NUT-Monitor UI app. By default the respective
181181
interpreter's 'site-packages' or 'dist-packages' location will be used,
182182
so you may have to adjust search paths for any other values. [#3062]
183+
* Automatic `--with-devd` could not detect the need to install a FreeBSD
184+
devd configuration snippet file, because it expected a source that should
185+
not have been there (probably a copy-paste typo in NUT v2.8.0).
183186

184187
- Fixed CI recipes for PyPI publication of PyNUT(Client) module to also
185188
include the source distribution (was posted for NUT v2.8.1 and v2.8.2

configure.ac

Lines changed: 465 additions & 569 deletions
Large diffs are not rendered by default.

data/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Network UPS Tools: data
22

3-
SUBDIRS = html
3+
SUBDIRS = htmlcgi
44

55
dist_data_DATA = cmdvartab
66
nodist_data_DATA = driver.list
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# Network UPS Tools: data/html
1+
# Network UPS Tools: data/htmlcgi
2+
3+
EXTRA_DIST = README.adoc
24

35
# install these only if configured --with-cgi
46
if WITH_CGI
5-
dist_html_DATA = index.html bottom.html nut-banner.png
6-
nodist_html_DATA = header.html
7+
dist_htmlcgi_DATA = index.html bottom.html nut-banner.png
8+
nodist_htmlcgi_DATA = header.html
9+
else
10+
EXTRA_DIST += index.html bottom.html nut-banner.png header.html.in
711
endif
8-
EXTRA_DIST = README.adoc
912

1013
SPELLCHECK_SRC = README.adoc
1114

File renamed without changes.

0 commit comments

Comments
 (0)