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:
Fred Gleason 2021-07-31 13:26:54 -04:00
parent 35e23c2925
commit 8d182fd504
18 changed files with 83 additions and 8 deletions

View File

@ -22134,3 +22134,5 @@
2021-07-31 Fred Gleason <fredg@paravelsystems.com> 2021-07-31 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'systemd/daemon-reload.sh' that broke the * Fixed a bug in 'systemd/daemon-reload.sh' that broke the
'make deb' target. 'make deb' target.
2021-07-31 Fred Gleason <fredg@paravelsystems.com>
* Added a warning to files derived by the build system.

View File

@ -1,3 +1,5 @@
@GENERATED_SCRIPT_FILE_WARNING@
prefix=@prefix@ prefix=@prefix@
exec_prefix=@exec_prefix@ exec_prefix=@exec_prefix@
libdir=@libdir@ libdir=@libdir@

View File

@ -1,5 +1,7 @@
#!/bin/sh #!/bin/sh
@GENERATED_SCRIPT_FILE_WARNING@
# build_debs.sh # build_debs.sh
# #
# Build Debian packages. # Build Debian packages.

View File

@ -1,8 +1,10 @@
# rd-bin.conf # rd-bin.conf
#
@GENERATED_SCRIPT_FILE_WARNING@
# This is the Apache Web Server configuration for Rivendell. # 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 # 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 # it under the terms of the GNU General Public License version 2 as

View File

@ -491,6 +491,18 @@ else
fi fi
AC_SUBST(RPM_DATESTAMP,`date +%a\ %b\ %d\ %Y`) 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 # Create icon symlinks for Operations Guide
# #

View File

@ -1,3 +1,5 @@
@GENERATED_XML_FILE_WARNING@
<info xmlns="http://docbook.org/ns/docbook"> <info xmlns="http://docbook.org/ns/docbook">
<title>Rivendell Radio Automation System</title> <title>Rivendell Radio Automation System</title>
<subtitle>Operations and Administration Guide</subtitle> <subtitle>Operations and Administration Guide</subtitle>
@ -9,7 +11,7 @@
<edition> <edition>
@VERSION@ @VERSION@
</edition> </edition>
<copyright><year>2003-2020</year><holder>Fred Gleason</holder></copyright> <copyright><year>2003-2021</year><holder>Fred Gleason</holder></copyright>
<legalnotice> <legalnotice>
<para> <para>
Permission is granted to copy, distribute and/or modify this document Permission is granted to copy, distribute and/or modify this document

View File

@ -33,12 +33,15 @@ dist_cwrap_SOURCES = cwrap.cpp cwrap.h
dist_jsmin_SOURCES = jsmin.c dist_jsmin_SOURCES = jsmin.c
EXTRA_DIST = rdi18n_helper.sh.in\ EXTRA_DIST = c_file_warning\
install_python.sh.in\ install_python.sh.in\
rdi18n_helper.sh.in\
rdpack.sh\ rdpack.sh\
rdtrans.sh\ rdtrans.sh\
rdtransgui.sh\ rdtransgui.sh\
setenvvar.sh script_file_warning\
setenvvar.sh\
xml_file_warning
CLEANFILES = *~\ CLEANFILES = *~\
*.tar.gz\ *.tar.gz\

12
helpers/c_file_warning Normal file
View 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. *
**************************************************************************
*/

View File

@ -1,8 +1,10 @@
#!/bin/sh #!/bin/sh
@GENERATED_SCRIPT_FILE_WARNING@
# install_python.sh # 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 # 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 # it under the terms of the GNU General Public License version 2 as

View File

@ -1,5 +1,7 @@
#!/bin/bash #!/bin/bash
@GENERATED_SCRIPT_FILE_WARNING@
# rdi18n_helper.sh # rdi18n_helper.sh
# #
# Helper script for managing internationalization files for Rivendell # Helper script for managing internationalization files for Rivendell

View 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
View 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. *
**************************************************************************
-->

View File

@ -1,5 +1,7 @@
// rdpaths.h // rdpaths.h
//
@GENERATED_C_FILE_WARNING@
// Install-Dependent Path Values for Rivendell // Install-Dependent Path Values for Rivendell
// //
// (C) Copyright 2008-2021 Fred Gleason <fredg@paravelsystems.com> // (C) Copyright 2008-2021 Fred Gleason <fredg@paravelsystems.com>

View File

@ -1,5 +1,7 @@
## rivendell.spec.in ## rivendell.spec.in
##
@GENERATED_SCRIPT_FILE_WARNING@
## The Rivendell Radio Automation System ## The Rivendell Radio Automation System
## Copyright (C) 2002-2021 Fred Gleason <fredg@paravelsystems.com> ## Copyright (C) 2002-2021 Fred Gleason <fredg@paravelsystems.com>
## ##

View File

@ -1,3 +1,5 @@
@GENERATED_SCRIPT_FILE_WARNING@
[Unit] [Unit]
Description=Rivendell Radio Automation System Description=Rivendell Radio Automation System
After=network.target remote-fs.target nss-lookup.target After=network.target remote-fs.target nss-lookup.target

View File

@ -1,5 +1,7 @@
#!/bin/sh #!/bin/sh
@GENERATED_SCRIPT_FILE_WARNING@
# install_usermode.sh # install_usermode.sh
# #
# Install support files for usermode wrapper # Install support files for usermode wrapper

View File

@ -1,3 +1,5 @@
@GENERATED_SCRIPT_FILE_WARNING@
USER=root USER=root
PROGRAM=@prefix@/bin/rdalsaconfig PROGRAM=@prefix@/bin/rdalsaconfig
SESSION=true SESSION=true

View File

@ -1,3 +1,5 @@
@GENERATED_SCRIPT_FILE_WARNING@
USER=root USER=root
PROGRAM=@prefix@/bin/rddbconfig PROGRAM=@prefix@/bin/rddbconfig
SESSION=true SESSION=true