Use 'subdir-objects' option in HAL configure options
If a source file is in a subdirectory, but the 'subdir-objects' automake option hasn't been enabled. For now, the corresponding output object file(s) will be placed in the top-level directory. However, this behaviour will change in future Automake versions, they will unconditionally cause object files to be placed in the same subdirectory of the corresponding sources. So to avoid future incompatibilities, enable the 'subdir-objects' option in location module configure options. Change-Id: If9e94c0f6fcd9922ee7f0f9d1909d5d6579a5715 CRs-Fixed: 2533108
This commit is contained in:
parent
b6f19637e3
commit
bf12ff26d5
4 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ AC_PREREQ(2.61)
|
||||||
# Initialize the gps loc-hal package version 1.0.0
|
# Initialize the gps loc-hal package version 1.0.0
|
||||||
AC_INIT([loc-hal],1.0.0)
|
AC_INIT([loc-hal],1.0.0)
|
||||||
# Does not strictly follow GNU Coding standards
|
# Does not strictly follow GNU Coding standards
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
||||||
# Disables auto rebuilding of configure, Makefile.ins
|
# Disables auto rebuilding of configure, Makefile.ins
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
# Verifies the --srcdir is correct by checking for the path
|
# Verifies the --srcdir is correct by checking for the path
|
||||||
|
|
|
@ -7,7 +7,7 @@ AC_PREREQ(2.61)
|
||||||
# Initialize the gps loc-hal package version 1.0.0
|
# Initialize the gps loc-hal package version 1.0.0
|
||||||
AC_INIT([loc-core],1.0.0)
|
AC_INIT([loc-core],1.0.0)
|
||||||
# Does not strictly follow GNU Coding standards
|
# Does not strictly follow GNU Coding standards
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
||||||
# Disables auto rebuilding of configure, Makefile.ins
|
# Disables auto rebuilding of configure, Makefile.ins
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
# Verifies the --srcdir is correct by checking for the path
|
# Verifies the --srcdir is correct by checking for the path
|
||||||
|
|
|
@ -7,7 +7,7 @@ AC_PREREQ(2.61)
|
||||||
# Initialize the gps location-api-iface package version 1.0.0
|
# Initialize the gps location-api-iface package version 1.0.0
|
||||||
AC_INIT([location-api-iface],1.0.0)
|
AC_INIT([location-api-iface],1.0.0)
|
||||||
# Does not strictly follow GNU Coding standards
|
# Does not strictly follow GNU Coding standards
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
||||||
# Disables auto rebuilding of configure, Makefile.ins
|
# Disables auto rebuilding of configure, Makefile.ins
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
# Verifies the --srcdir is correct by checking for the path
|
# Verifies the --srcdir is correct by checking for the path
|
||||||
|
|
|
@ -7,7 +7,7 @@ AC_PREREQ(2.61)
|
||||||
# Initialize the gps gps-utils package version 1.0.0
|
# Initialize the gps gps-utils package version 1.0.0
|
||||||
AC_INIT([gps-utils],1.0.0)
|
AC_INIT([gps-utils],1.0.0)
|
||||||
# Does not strictly follow GNU Coding standards
|
# Does not strictly follow GNU Coding standards
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
||||||
# Disables auto rebuilding of configure, Makefile.ins
|
# Disables auto rebuilding of configure, Makefile.ins
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
# Verifies the --srcdir is correct by checking for the path
|
# Verifies the --srcdir is correct by checking for the path
|
||||||
|
|
Loading…
Reference in a new issue