[hipl-commit] [trunk] Rev 4211: cosmetics: Group automake macros together for improved readability.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Fri, 9 Apr 2010 17:34:44 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 09/04/2010 at 17:34:44
Revision: 4211
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  cosmetics: Group automake macros together for improved readability.

Modified:
  M  configure.ac

=== modified file 'configure.ac'
--- configure.ac        2010-04-09 13:18:23 +0000
+++ configure.ac        2010-04-09 14:34:25 +0000
@@ -9,15 +9,15 @@
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_MACRO_DIR([m4])
 
-AM_INIT_AUTOMAKE([foreign subdir-objects])
+# Checks for programs.
+AC_PROG_CC
+AC_PROG_INSTALL
 # AC_PROG_LIBTOOL() could be replaced with LT_INIT(disable-shared) but
 # OpenWRT (Mar 2010) is running too old version of libtool
 # LT_INIT(disable-shared)
 AC_PROG_LIBTOOL(disable-shared)
 
-# Checks for programs.
-AC_PROG_CC
-AC_PROG_INSTALL
+AM_INIT_AUTOMAKE([foreign subdir-objects])
 AM_PROG_CC_C_O # Required in CentOS
 
 # Check for python for tools directory

Other related posts:

  • » [hipl-commit] [trunk] Rev 4211: cosmetics: Group automake macros together for improved readability. - Diego Biurrun