From 03bf87dcb06f7021bfb2df2fa8691593c6148aff Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 30 Nov 2022 19:47:00 +0100 Subject: Adding upstream version 1.37.0. Signed-off-by: Daniel Baumann --- web/gui/bundle_dashboard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'web/gui/bundle_dashboard.py') diff --git a/web/gui/bundle_dashboard.py b/web/gui/bundle_dashboard.py index e1815b1e2..3b685be72 100755 --- a/web/gui/bundle_dashboard.py +++ b/web/gui/bundle_dashboard.py @@ -20,13 +20,13 @@ BASEPATH = Path('dashboard') URLTEMPLATE = 'https://github.com/netdata/dashboard/releases/download/{0}/dashboard.tar.gz' MAKEFILETEMPLATE = ''' -# Auto-generated by generate-dashboard-makefile.py +# Auto-generated by bundle_dashboard.py # Copyright: © 2021 Netdata Inc. # SPDX-License-Identifier: GPL-3.0-or-later MAINTAINERCLEANFILES = $(srcdir)/Makefile.in dist_noinst_DATA = \\ - README.md + $(srcdir)/README.md dist_web_DATA = \\ {0} \\ @@ -91,7 +91,7 @@ def genfilelist(path): files = [f for f in path.iterdir() if f.is_file() and f.name != 'README.md'] files = [Path(*f.parts[1:]) for f in files] files.sort() - return ' \\\n '.join([str(f) for f in files]) + return ' \\\n '.join([("$(srcdir)/" + str(f)) for f in files]) def write_makefile(): -- cgit v1.2.3