[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#50046: Probably a bug
From: |
Nick Bowler |
Subject: |
bug#50046: Probably a bug |
Date: |
Sat, 14 Aug 2021 21:00:07 -0400 |
On 2021-08-14, José Hipólito Moyano <jose.moyano@cs.uns.edu.ar> wrote:
> I attached the project files in the email. Maybe they were filtered :-)
> Here they go again (maybe the C code won't compile XD, I was just
> starting)
[...]
>> automake: error: global options already processed
Your error is presumably caused by the two expansions of
AM_INIT_AUTOMAKE in your configure.ac. There should be just one,
so instead of
AM_INIT_AUTOMAKE([foreign 1.16])
# To enable non recursive automake
AM_INIT_AUTOMAKE([subdir-objects])
try:
AM_INIT_AUTOMAKE([foreign subdir-objects 1.16])
Strictly speaking I would say there is an Automake bug here: the
diagnostic message was certainly not very useful!
Hope that helps,
Nick