-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify autogen.sh using autoreconf only
Add AC_CONFIG_AUX_DIR([config]) to configure.ac AM_INIT_AUTOMAKE after AC_CONFIG_AUX_DIR to avoid one error in autotools Not add foreign to AM_INIT_AUTOMAKE, instead add subdir-objects Copy from docs the required files as quick fix: Makefile.am: error: required file './AUTHORS' not found Makefile.am: error: required file './ChangeLog' not found Makefile.am: installing './COPYING' using GNU General Public License v3 file
- Loading branch information
Showing
3 changed files
with
11 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,14 +25,15 @@ | |
# | ||
|
||
AC_INIT([aMule],[SVN],[[email protected]]) | ||
AM_INIT_AUTOMAKE | ||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) | ||
|
||
AC_PREREQ(2.59) | ||
|
||
AC_CONFIG_SRCDIR([src/amule.cpp]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AC_CONFIG_AUX_DIR([config]) | ||
AM_INIT_AUTOMAKE([subdir-objects]) | ||
AM_MAINTAINER_MODE | ||
|
||
dnl Check host system. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters