#!/bin/sh # Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC") # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # This script embeds config.report into src/bin/cfgrpt/config_report.cc # Called by configure # report_file="$1" dest="$2" if [ -z ${report_file} ] then echo "ERROR mk_cfgrpt.sh - input report: $report_file does not exist" exit -1 fi # Initializes cat /dev/null > $dest if [ $? -ne 0 ] then echo "ERROR mk_cfgrpt.sh - cannot create config output file: $dest" exit -1 fi # Header cat >> $dest << END // config_report.cc. Generated from config.report by tools/mk_cfgrpt.sh namespace isc { namespace detail { extern const char* const config_report[] = { END # Body: escape '\'s and '"'s, preprend ' ";;;; ' and append '",' sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' -e 's/^/ ";;;; /' -e 's/$/",/' \ < $report_file >> $dest # Trailer cat >> $dest <