diff mbox

[v2] automake: use whenever possible the ACLOCAL_HOST_DIR variable

Message ID 1423392056-30339-1-git-send-email-fabio.porcedda@gmail.com
State Accepted
Headers show

Commit Message

Fabio Porcedda Feb. 8, 2015, 10:40 a.m. UTC
Use the ACLOCAL_HOST_DIR in the GTK_DOC_M4_INSTALL hook.

Move the ACLOCAL_HOST_DIR definition at the beginning so the definition
is ahead the utilization.

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Cc: Romain Naour <romain.naour@openwide.fr>
---
 package/automake/automake.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Fabio Porcedda Feb. 24, 2015, 10:59 a.m. UTC | #1
On Sun, Feb 8, 2015 at 11:40 AM, Fabio Porcedda
<fabio.porcedda@gmail.com> wrote:
> Use the ACLOCAL_HOST_DIR in the GTK_DOC_M4_INSTALL hook.
>
> Move the ACLOCAL_HOST_DIR definition at the beginning so the definition
> is ahead the utilization.
>
> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
> Cc: Romain Naour <romain.naour@openwide.fr>
> ---
>  package/automake/automake.mk | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/automake/automake.mk b/package/automake/automake.mk
> index a3fd18c..84f05dc 100644
> --- a/package/automake/automake.mk
> +++ b/package/automake/automake.mk
> @@ -12,8 +12,11 @@ AUTOMAKE_LICENSE_FILES = COPYING
>
>  HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
>
> +ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
> +
>  define GTK_DOC_M4_INSTALL
> -       $(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 $(HOST_DIR)/usr/share/aclocal/gtk-doc.m4
> +       $(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 \
> +               $(ACLOCAL_HOST_DIR)/gtk-doc.m4
>  endef
>
>  # ensure staging aclocal dir exists
> @@ -29,5 +32,4 @@ $(eval $(host-autotools-package))
>  # variables used by other packages
>  AUTOMAKE = $(HOST_DIR)/usr/bin/automake
>  ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
> -ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
>  ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)
> --
> 2.1.0
>

Ping for next?

BR
Thomas De Schampheleire Feb. 24, 2015, 2:11 p.m. UTC | #2
On Tue, Feb 24, 2015 at 11:59 AM, Fabio Porcedda
<fabio.porcedda@gmail.com> wrote:
> On Sun, Feb 8, 2015 at 11:40 AM, Fabio Porcedda
> <fabio.porcedda@gmail.com> wrote:
>> Use the ACLOCAL_HOST_DIR in the GTK_DOC_M4_INSTALL hook.
>>
>> Move the ACLOCAL_HOST_DIR definition at the beginning so the definition
>> is ahead the utilization.
>>
>> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
>> Cc: Romain Naour <romain.naour@openwide.fr>
>> ---
>>  package/automake/automake.mk | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/package/automake/automake.mk b/package/automake/automake.mk
>> index a3fd18c..84f05dc 100644
>> --- a/package/automake/automake.mk
>> +++ b/package/automake/automake.mk
>> @@ -12,8 +12,11 @@ AUTOMAKE_LICENSE_FILES = COPYING
>>
>>  HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
>>
>> +ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
>> +
>>  define GTK_DOC_M4_INSTALL
>> -       $(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 $(HOST_DIR)/usr/share/aclocal/gtk-doc.m4
>> +       $(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 \
>> +               $(ACLOCAL_HOST_DIR)/gtk-doc.m4
>>  endef
>>
>>  # ensure staging aclocal dir exists
>> @@ -29,5 +32,4 @@ $(eval $(host-autotools-package))
>>  # variables used by other packages
>>  AUTOMAKE = $(HOST_DIR)/usr/bin/automake
>>  ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
>> -ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
>>  ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)
>> --

Can you clarify why this is necessary?
Do you have a specific case where this is wrong?
Fabio Porcedda Feb. 24, 2015, 2:19 p.m. UTC | #3
On Tue, Feb 24, 2015 at 3:11 PM, Thomas De Schampheleire
<patrickdepinguin@gmail.com> wrote:
> On Tue, Feb 24, 2015 at 11:59 AM, Fabio Porcedda
> <fabio.porcedda@gmail.com> wrote:
>> On Sun, Feb 8, 2015 at 11:40 AM, Fabio Porcedda
>> <fabio.porcedda@gmail.com> wrote:
>>> Use the ACLOCAL_HOST_DIR in the GTK_DOC_M4_INSTALL hook.
>>>
>>> Move the ACLOCAL_HOST_DIR definition at the beginning so the definition
>>> is ahead the utilization.
>>>
>>> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
>>> Cc: Romain Naour <romain.naour@openwide.fr>
>>> ---
>>>  package/automake/automake.mk | 6 ++++--
>>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/package/automake/automake.mk b/package/automake/automake.mk
>>> index a3fd18c..84f05dc 100644
>>> --- a/package/automake/automake.mk
>>> +++ b/package/automake/automake.mk
>>> @@ -12,8 +12,11 @@ AUTOMAKE_LICENSE_FILES = COPYING
>>>
>>>  HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
>>>
>>> +ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
>>> +
>>>  define GTK_DOC_M4_INSTALL
>>> -       $(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 $(HOST_DIR)/usr/share/aclocal/gtk-doc.m4
>>> +       $(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 \
>>> +               $(ACLOCAL_HOST_DIR)/gtk-doc.m4
>>>  endef
>>>
>>>  # ensure staging aclocal dir exists
>>> @@ -29,5 +32,4 @@ $(eval $(host-autotools-package))
>>>  # variables used by other packages
>>>  AUTOMAKE = $(HOST_DIR)/usr/bin/automake
>>>  ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
>>> -ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
>>>  ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)
>>> --
>
> Can you clarify why this is necessary?
> Do you have a specific case where this is wrong?

It's a refactoring to improve the code style.
It does not change the behavior.

BR
Thomas Petazzoni June 14, 2015, 9:34 p.m. UTC | #4
Dear Fabio Porcedda,

On Sun,  8 Feb 2015 11:40:56 +0100, Fabio Porcedda wrote:
> Use the ACLOCAL_HOST_DIR in the GTK_DOC_M4_INSTALL hook.
> 
> Move the ACLOCAL_HOST_DIR definition at the beginning so the definition
> is ahead the utilization.
> 
> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
> Cc: Romain Naour <romain.naour@openwide.fr>
> ---
>  package/automake/automake.mk | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Applied, thanks.

Thomas
diff mbox

Patch

diff --git a/package/automake/automake.mk b/package/automake/automake.mk
index a3fd18c..84f05dc 100644
--- a/package/automake/automake.mk
+++ b/package/automake/automake.mk
@@ -12,8 +12,11 @@  AUTOMAKE_LICENSE_FILES = COPYING
 
 HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
 
+ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
+
 define GTK_DOC_M4_INSTALL
-	$(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 $(HOST_DIR)/usr/share/aclocal/gtk-doc.m4
+	$(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 \
+		$(ACLOCAL_HOST_DIR)/gtk-doc.m4
 endef
 
 # ensure staging aclocal dir exists
@@ -29,5 +32,4 @@  $(eval $(host-autotools-package))
 # variables used by other packages
 AUTOMAKE = $(HOST_DIR)/usr/bin/automake
 ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
-ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
 ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)