|
Packit Service |
9646c7 |
# -*- Autotest -*-
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
AT_BANNER([Autoscan.])
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
# Copyright (C) 2005, 2009-2012 Free Software Foundation, Inc.
|
|
Packit Service |
9646c7 |
#
|
|
Packit Service |
9646c7 |
# This program is free software: you can redistribute it and/or modify
|
|
Packit Service |
9646c7 |
# it under the terms of the GNU General Public License as published by
|
|
Packit Service |
9646c7 |
# the Free Software Foundation, either version 3 of the License, or
|
|
Packit Service |
9646c7 |
# (at your option) any later version.
|
|
Packit Service |
9646c7 |
#
|
|
Packit Service |
9646c7 |
# This program is distributed in the hope that it will be useful,
|
|
Packit Service |
9646c7 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Packit Service |
9646c7 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
Packit Service |
9646c7 |
# GNU General Public License for more details.
|
|
Packit Service |
9646c7 |
#
|
|
Packit Service |
9646c7 |
# You should have received a copy of the GNU General Public License
|
|
Packit Service |
9646c7 |
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
AT_SETUP([autoscan])
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
AT_DATA([Makefile.am],
|
|
Packit Service |
9646c7 |
[[SUBDIRS = subpkg
|
|
Packit Service |
9646c7 |
]])
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
AT_DATA([configure.ac],
|
|
Packit Service |
9646c7 |
[[AC_INIT
|
|
Packit Service |
9646c7 |
AC_PREREQ(2.59)
|
|
Packit Service |
9646c7 |
AM_INIT_AUTOMAKE(foreign)
|
|
Packit Service |
9646c7 |
AC_CONFIG_SUBDIRS(subpkg)
|
|
Packit Service |
9646c7 |
AC_CONFIG_FILES(Makefile)
|
|
Packit Service |
9646c7 |
AC_OUTPUT
|
|
Packit Service |
9646c7 |
]])
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
mkdir subpkg
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
AT_DATA([subpkg/Makefile.am], [])
|
|
Packit Service |
9646c7 |
AT_DATA([subpkg/configure.ac],
|
|
Packit Service |
9646c7 |
[[AC_INIT
|
|
Packit Service |
9646c7 |
AM_INIT_AUTOMAKE(foreign)
|
|
Packit Service |
9646c7 |
AC_CONFIG_FILES(Makefile)
|
|
Packit Service |
9646c7 |
AC_OUTPUT
|
|
Packit Service |
9646c7 |
]])
|
|
Packit Service |
9646c7 |
AT_CHECK([autoscan])
|
|
Packit Service |
9646c7 |
AT_CHECK([grep subpkg/Makefile configure.scan], [1], [], [ignore])
|
|
Packit Service |
9646c7 |
|
|
Packit Service |
9646c7 |
AT_CLEANUP
|