diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2012-07-11 08:00:39 -0700 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2012-07-11 22:13:08 +0300 |
commit | b9c682b9d323895a412a99b4936cbd0f7833ad86 (patch) | |
tree | ab5677284e6146721afacec8167a7ae1ee6d39c8 /configure.ac | |
parent | be5ecc95c43e0d2969844a22525857c99e0e6ed2 (diff) | |
download | ODR-AudioEnc-b9c682b9d323895a412a99b4936cbd0f7833ad86.tar.gz ODR-AudioEnc-b9c682b9d323895a412a99b4936cbd0f7833ad86.tar.bz2 ODR-AudioEnc-b9c682b9d323895a412a99b4936cbd0f7833ad86.zip |
build: declare the project foreign to automake
By default automake thinks the project is part of GNU and enforces the
presence of some files. By declaring the project foreign, we can
remove the 0-sized files.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 868b2c8..0c98429 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([fdk-aac], [0.1.0], [http://sourceforge.net/projects/opencore-amr/]) AC_CONFIG_AUX_DIR(.) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([tar-ustar]) +AM_INIT_AUTOMAKE([tar-ustar foreign]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) dnl Checks for programs. |