1
1

Minor change to VT: use the "foreign" keyword with AM_INIT_AUTOMAKE so

that Automake doesn't assume that these are GNU standard packages
that conform to the GNU coding standards.  Without this keyword,
Automake can replace the VT INSTALL files with the GNU standard
INSTALL text file.

This change is ''necessary'' for the autogen improvements that are
coming shortly (see
http://www.open-mpi.org/community/lists/devel/2010/09/8478.php); I'm
committing this change ahead of time so that I can pass it upstream to
the VT developers.

This commit was SVN r23740.
Этот коммит содержится в:
Jeff Squyres 2010-09-12 08:44:41 +00:00
родитель 3bb587937a
Коммит ea13687547
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -5,7 +5,7 @@ AC_PREREQ(2.60)
AC_INIT([VampirTrace], [m4_normalize(esyscmd([cat VERSION]))], [vampirsupport@zih.tu-dresden.de], [VampirTrace]) AC_INIT([VampirTrace], [m4_normalize(esyscmd([cat VERSION]))], [vampirsupport@zih.tu-dresden.de], [VampirTrace])
AC_CONFIG_AUX_DIR(config) AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config/m4) AC_CONFIG_MACRO_DIR(config/m4)
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
# If Automake supports silent rules, enable them. # If Automake supports silent rules, enable them.

Просмотреть файл

@ -8,7 +8,7 @@ AC_INIT([OTF],
AC_CONFIG_AUX_DIR(config) AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR(config/m4) AC_CONFIG_MACRO_DIR(config/m4)
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
# If Automake supports silent rules, enable them. # If Automake supports silent rules, enable them.