From 7bffd93c7bdfddbddae79c8c0411f1e136889f92 Mon Sep 17 00:00:00 2001 From: plata Date: Thu, 20 May 2021 15:21:43 +0000 Subject: [PATCH] Move header to common folder (MR 11) Add the "do not edit" warning to both the generated userChrome.css and userContent.css. --- Makefile | 5 +++-- src/{userChrome/00-header.css => common/header.css} | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename src/{userChrome/00-header.css => common/header.css} (100%) diff --git a/Makefile b/Makefile index 87538fb..3a8afe0 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ # Copyright 2020 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later -USERCHROME_FILES := $(sort $(wildcard src/userChrome/*.css)) -USERCONTENT_FILES := $(sort $(wildcard src/userContent/*.css)) +HEADER_FILE := src/common/header.css +USERCHROME_FILES := $(HEADER_FILE) $(sort $(wildcard src/userChrome/*.css)) +USERCONTENT_FILES := $(HEADER_FILE) $(sort $(wildcard src/userContent/*.css)) HOMEPAGE_FILES := head.html distro_links.html bottom.html DISTRO := postmarketOS DESTDIR := diff --git a/src/userChrome/00-header.css b/src/common/header.css similarity index 100% rename from src/userChrome/00-header.css rename to src/common/header.css