mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-28 14:42:34 +02:00
2021-07-31 Fred Gleason <fredg@paravelsystems.com>
* Added a warning to files derived by the build system. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
35e23c2925
commit
8d182fd504
@ -22134,3 +22134,5 @@
|
||||
2021-07-31 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in 'systemd/daemon-reload.sh' that broke the
|
||||
'make deb' target.
|
||||
2021-07-31 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added a warning to files derived by the build system.
|
||||
|
@ -1,3 +1,5 @@
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
# build_debs.sh
|
||||
#
|
||||
# Build Debian packages.
|
||||
|
@ -1,8 +1,10 @@
|
||||
# rd-bin.conf
|
||||
#
|
||||
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
# This is the Apache Web Server configuration for Rivendell.
|
||||
#
|
||||
# (C) Copyright 2007-2020 Fred Gleason <fredg@paravelsystems.com>
|
||||
# (C) Copyright 2007-2021 Fred Gleason <fredg@paravelsystems.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
|
12
configure.ac
12
configure.ac
@ -491,6 +491,18 @@ else
|
||||
fi
|
||||
AC_SUBST(RPM_DATESTAMP,`date +%a\ %b\ %d\ %Y`)
|
||||
|
||||
#
|
||||
# Generated File Warnings
|
||||
#
|
||||
AC_SUBST_FILE(GENERATED_C_FILE_WARNING)
|
||||
GENERATED_C_FILE_WARNING=$srcdir/helpers/c_file_warning
|
||||
|
||||
AC_SUBST_FILE(GENERATED_SCRIPT_FILE_WARNING)
|
||||
GENERATED_SCRIPT_FILE_WARNING=$srcdir/helpers/script_file_warning
|
||||
|
||||
AC_SUBST_FILE(GENERATED_XML_FILE_WARNING)
|
||||
GENERATED_XML_FILE_WARNING=$srcdir/helpers/xml_file_warning
|
||||
|
||||
#
|
||||
# Create icon symlinks for Operations Guide
|
||||
#
|
||||
|
@ -1,3 +1,5 @@
|
||||
@GENERATED_XML_FILE_WARNING@
|
||||
|
||||
<info xmlns="http://docbook.org/ns/docbook">
|
||||
<title>Rivendell Radio Automation System</title>
|
||||
<subtitle>Operations and Administration Guide</subtitle>
|
||||
@ -9,7 +11,7 @@
|
||||
<edition>
|
||||
@VERSION@
|
||||
</edition>
|
||||
<copyright><year>2003-2020</year><holder>Fred Gleason</holder></copyright>
|
||||
<copyright><year>2003-2021</year><holder>Fred Gleason</holder></copyright>
|
||||
<legalnotice>
|
||||
<para>
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
|
@ -33,12 +33,15 @@ dist_cwrap_SOURCES = cwrap.cpp cwrap.h
|
||||
|
||||
dist_jsmin_SOURCES = jsmin.c
|
||||
|
||||
EXTRA_DIST = rdi18n_helper.sh.in\
|
||||
EXTRA_DIST = c_file_warning\
|
||||
install_python.sh.in\
|
||||
rdi18n_helper.sh.in\
|
||||
rdpack.sh\
|
||||
rdtrans.sh\
|
||||
rdtransgui.sh\
|
||||
setenvvar.sh
|
||||
script_file_warning\
|
||||
setenvvar.sh\
|
||||
xml_file_warning
|
||||
|
||||
CLEANFILES = *~\
|
||||
*.tar.gz\
|
||||
|
12
helpers/c_file_warning
Normal file
12
helpers/c_file_warning
Normal file
@ -0,0 +1,12 @@
|
||||
/*
|
||||
**************************************************************************
|
||||
* WARNING! WARNING! WARNING! *
|
||||
* *
|
||||
* The contents of this file are automatically generated by the build *
|
||||
* system. Do not make any changes directly to this file; such changes *
|
||||
* will be silently ignored and overwritten! *
|
||||
* *
|
||||
* The template whence this file's contents were derived are in a file *
|
||||
* of the same name with ".in" appended. *
|
||||
**************************************************************************
|
||||
*/
|
@ -1,8 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
# install_python.sh
|
||||
#
|
||||
# (C) Copyright 2018 Fred Gleason <fredg@paravelsystems.com>
|
||||
# (C) Copyright 2018-2021 Fred Gleason <fredg@paravelsystems.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
# rdi18n_helper.sh
|
||||
#
|
||||
# Helper script for managing internationalization files for Rivendell
|
||||
|
10
helpers/script_file_warning
Normal file
10
helpers/script_file_warning
Normal file
@ -0,0 +1,10 @@
|
||||
############################################################################
|
||||
# WARNING! WARNING! WARNING! #
|
||||
# #
|
||||
# The contents of this file are automatically generated by the build #
|
||||
# system. Do not make any changes directly to this file; such changes #
|
||||
# will be silently ignored and overwritten! #
|
||||
# #
|
||||
# The template whence this file's contents were derived are in a file #
|
||||
# of the same name with ".in" appended. #
|
||||
############################################################################
|
12
helpers/xml_file_warning
Normal file
12
helpers/xml_file_warning
Normal file
@ -0,0 +1,12 @@
|
||||
<!--
|
||||
**************************************************************************
|
||||
* WARNING! WARNING! WARNING! *
|
||||
* *
|
||||
* The contents of this file are automatically generated by the build *
|
||||
* system. Do not make any changes directly to this file; such changes *
|
||||
* will be silently ignored and overwritten! *
|
||||
* *
|
||||
* The template whence this file's contents are derived are in a file *
|
||||
* of the same name with ".in" appended. *
|
||||
**************************************************************************
|
||||
-->
|
@ -1,5 +1,7 @@
|
||||
// rdpaths.h
|
||||
//
|
||||
|
||||
@GENERATED_C_FILE_WARNING@
|
||||
|
||||
// Install-Dependent Path Values for Rivendell
|
||||
//
|
||||
// (C) Copyright 2008-2021 Fred Gleason <fredg@paravelsystems.com>
|
||||
|
@ -1,5 +1,7 @@
|
||||
## rivendell.spec.in
|
||||
##
|
||||
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
## The Rivendell Radio Automation System
|
||||
## Copyright (C) 2002-2021 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
|
@ -1,3 +1,5 @@
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
[Unit]
|
||||
Description=Rivendell Radio Automation System
|
||||
After=network.target remote-fs.target nss-lookup.target
|
||||
|
@ -1,5 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
# install_usermode.sh
|
||||
#
|
||||
# Install support files for usermode wrapper
|
||||
|
@ -1,3 +1,5 @@
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
USER=root
|
||||
PROGRAM=@prefix@/bin/rdalsaconfig
|
||||
SESSION=true
|
||||
|
@ -1,3 +1,5 @@
|
||||
@GENERATED_SCRIPT_FILE_WARNING@
|
||||
|
||||
USER=root
|
||||
PROGRAM=@prefix@/bin/rddbconfig
|
||||
SESSION=true
|
||||
|
Loading…
x
Reference in New Issue
Block a user