All of lore.kernel.org
 help / color / mirror / Atom feed
* Compiling alsa-utils
@ 2010-07-26  8:58 Pavel Hofman
  2010-07-26  9:09 ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Pavel Hofman @ 2010-07-26  8:58 UTC (permalink / raw)
  To: alsa-devel

Hi,

after clean git clone of  git://git.alsa-project.org/alsa-utils.git I
got the following error:

pavel@sara:~/install/alsa/alsa-utils$ autoheader
configure.in:268: error: `po/Makefile.in' is already registered with
AC_CONFIG_FILES.
../../lib/autoconf/status.m4:311: AC_CONFIG_FILES is expanded from...
configure.in:268: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
autoheader: '/usr/bin/autom4te' failed with exit status: 1


After deleting po/Makefile.in from the list of AC_OUTPUT in
configure.in:268 the compilation proceeded fine.

Ubuntu 9.10.

Thanks,

Pavel Hofman.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling alsa-utils
  2010-07-26  8:58 Compiling alsa-utils Pavel Hofman
@ 2010-07-26  9:09 ` Takashi Iwai
  2010-07-26  9:17   ` Pavel Hofman
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2010-07-26  9:09 UTC (permalink / raw)
  To: Pavel Hofman; +Cc: alsa-devel

At Mon, 26 Jul 2010 10:58:09 +0200,
Pavel Hofman wrote:
> 
> Hi,
> 
> after clean git clone of  git://git.alsa-project.org/alsa-utils.git I
> got the following error:
> 
> pavel@sara:~/install/alsa/alsa-utils$ autoheader
> configure.in:268: error: `po/Makefile.in' is already registered with
> AC_CONFIG_FILES.
> ../../lib/autoconf/status.m4:311: AC_CONFIG_FILES is expanded from...
> configure.in:268: the top level
> autom4te: /usr/bin/m4 failed with exit status: 1
> autoheader: '/usr/bin/autom4te' failed with exit status: 1
> 
> 
> After deleting po/Makefile.in from the list of AC_OUTPUT in
> configure.in:268 the compilation proceeded fine.
> 
> Ubuntu 9.10.

It's f*** auto-tools, that tells everything :)

Doesn't the simple gitcompile work after the clean clone?


Takashi

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling alsa-utils
  2010-07-26  9:09 ` Takashi Iwai
@ 2010-07-26  9:17   ` Pavel Hofman
  2010-07-26  9:32     ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Pavel Hofman @ 2010-07-26  9:17 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

Takashi Iwai napsal(a):
> At Mon, 26 Jul 2010 10:58:09 +0200,
> Pavel Hofman wrote:
>> Hi,
>>
>> after clean git clone of  git://git.alsa-project.org/alsa-utils.git I
>> got the following error:
>>
>> pavel@sara:~/install/alsa/alsa-utils$ autoheader
>> configure.in:268: error: `po/Makefile.in' is already registered with
>> AC_CONFIG_FILES.
>> ../../lib/autoconf/status.m4:311: AC_CONFIG_FILES is expanded from...
>> configure.in:268: the top level
>> autom4te: /usr/bin/m4 failed with exit status: 1
>> autoheader: '/usr/bin/autom4te' failed with exit status: 1
>>
>>
>> After deleting po/Makefile.in from the list of AC_OUTPUT in
>> configure.in:268 the compilation proceeded fine.
>>
>> Ubuntu 9.10.
> 
> It's f*** auto-tools, that tells everything :)
> 
> Doesn't the simple gitcompile work after the clean clone?
> 
> 

Thanks, the gitcompile script works fine. I followed the procedure in
INSTALL:

        aclocal
        gettextize
        autoheader
        automake --foreign --copy --add-missing
        autoconf
        ./configure
        make



Perhaps we could either update this sequence (but I have no idea how :)
), or delete the procedure and just mention the gitcompile script (that
one I can post as a patch).

Thanks,


Pavel.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling alsa-utils
  2010-07-26  9:17   ` Pavel Hofman
@ 2010-07-26  9:32     ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2010-07-26  9:32 UTC (permalink / raw)
  To: Pavel Hofman; +Cc: alsa-devel

At Mon, 26 Jul 2010 11:17:24 +0200,
Pavel Hofman wrote:
> 
> Takashi Iwai napsal(a):
> > At Mon, 26 Jul 2010 10:58:09 +0200,
> > Pavel Hofman wrote:
> >> Hi,
> >>
> >> after clean git clone of  git://git.alsa-project.org/alsa-utils.git I
> >> got the following error:
> >>
> >> pavel@sara:~/install/alsa/alsa-utils$ autoheader
> >> configure.in:268: error: `po/Makefile.in' is already registered with
> >> AC_CONFIG_FILES.
> >> ../../lib/autoconf/status.m4:311: AC_CONFIG_FILES is expanded from...
> >> configure.in:268: the top level
> >> autom4te: /usr/bin/m4 failed with exit status: 1
> >> autoheader: '/usr/bin/autom4te' failed with exit status: 1
> >>
> >>
> >> After deleting po/Makefile.in from the list of AC_OUTPUT in
> >> configure.in:268 the compilation proceeded fine.
> >>
> >> Ubuntu 9.10.
> > 
> > It's f*** auto-tools, that tells everything :)
> > 
> > Doesn't the simple gitcompile work after the clean clone?
> > 
> > 
> 
> Thanks, the gitcompile script works fine. I followed the procedure in
> INSTALL:
> 
>         aclocal
>         gettextize
>         autoheader
>         automake --foreign --copy --add-missing
>         autoconf
>         ./configure
>         make

I guess gettextize options do tricks.
Anyway, usually "autoreconf -fi" should do all auto-tools setup...

> Perhaps we could either update this sequence (but I have no idea how :)
> ), or delete the procedure and just mention the gitcompile script (that
> one I can post as a patch).

Feel free to submit a patch :)


thanks,

Takashi 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-07-26  9:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-26  8:58 Compiling alsa-utils Pavel Hofman
2010-07-26  9:09 ` Takashi Iwai
2010-07-26  9:17   ` Pavel Hofman
2010-07-26  9:32     ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.