| 12345678910111213141516171819202122232425262728293031323334353637383940 | #! /bin/sh# Copyright (C) 2009-2017 Free Software Foundation, Inc.## This program is free software: you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 3 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program.  If not, see <http://www.gnu.org/licenses/>.# Complain about configure substitutions in EXTRA_PRIMARY variables.# Rationale: we need to know the literal values of, say, PROGRAMS.# Thus, we allow substitutions in bin_PROGRAMS, but then EXTRA_PROGRAMS# needs to list possible values of that substitution, literally.. test-init.shcat >>configure.ac <<'END'AC_PROG_CCAC_SUBST([substed1])AC_SUBST([substed2])ENDcat > Makefile.am <<'END'bin_PROGRAMS = @substed1@EXTRA_PROGRAMS = @substed2@END$ACLOCALAUTOMAKE_failsgrep 'bin_PROGRAMS.*contains configure substitution' stderr && exit 1grep 'EXTRA_PROGRAMS.*contains configure substitution' stderrexit 0
 |