[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gperf new version
From: |
Collin Funk |
Subject: |
Re: gperf new version |
Date: |
Sun, 30 Jun 2024 05:28:20 -0700 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hi Richard,
Richard Barnes <rijard.barnes@gmail.com> writes:
> I've tried compiling from source to work around this, but I see
>
> ./autogen.sh
> ./configure
>> configure: error: cannot find required auxiliary files: install-sh
[...]
> ./options.cc:29:10: fatal error: filename.h: No such file or directory
> 29 | #include "filename.h"
> | ^~~~~~~~~~~~
I ran into the missing install-sh a while ago. The correct commands to
invoke are:
./autopull.sh
./autogen.sh
./configure
The ./autopull.sh will fetch install-sh, filename.h and some other files
from gnulib.
That should let you build from git.
Collin