mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Ship a minimal zipl configuration file at /lib/s390-tools/zipl.conf by default which would help systems using BLS files, without having to create the traditional /etc/zipl.conf file. GitHub-ID: https://github.com/ibm-s390-tools/s390-tools/issues/70 GitHub-ID: https://github.com/ibm-s390-tools/s390-tools/pull/71 Signed-off-by: Tuan Hoang <tmhoang@linux.ibm.com> Signed-off-by: Stefan Haberland <sth@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
19 lines
520 B
Makefile
19 lines
520 B
Makefile
# Common definitions
|
|
include ../../common.mak
|
|
|
|
all:
|
|
|
|
install:
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man5
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(MANDIR)/man8
|
|
sed -e 's@%SYSCONFDIR%@$(SYSCONFDIR)@' \
|
|
-e 's@%TOOLS_LIBDIR%@$(TOOLS_LIBDIR)@' zipl.8.in \
|
|
> $(DESTDIR)$(MANDIR)/man8/zipl.8
|
|
sed -e 's@%SYSCONFDIR%@$(SYSCONFDIR)@' \
|
|
-e 's@%TOOLS_LIBDIR%@$(TOOLS_LIBDIR)@' zipl.conf.5.in \
|
|
> $(DESTDIR)$(MANDIR)/man5/zipl.conf.5
|
|
chmod 644 $(DESTDIR)$(MANDIR)/man8/zipl.8 \
|
|
$(DESTDIR)$(MANDIR)/man5/zipl.conf.5
|
|
|
|
clean:
|