On Wed, Jul 18, 2018 at 7:14 AM, Tim Rühsen <[email protected]> wrote:
> Maybe it's an bash/sh incompatibility. Anyways - what does 'make
> install' do !? It basically copies the 'wget' executable into a
> directory (e.g. /usr/local/bin/) that is listed in your PATH env variable.
>
> You can do that by hand. If you want the updated man file, copy wget.1
> into your man1 directory (e.g. /usr/local/share/man/man1/).
I see what was happening. After unpacking this patch was applied:
sed -e 's|$(LTLIBICONV)|$(LIBICONV)|g' fuzz/Makefile.am >
fuzz/Makefile.am.fixed
mv fuzz/Makefile.am.fixed fuzz/Makefile.am
But it lacked this:
touch -t 197001010000 fuzz/Makefile.am
So Autotools was trying to regenerate all of its shit. Autotools sucks
so bad I cringe when I have to work with it. What a miserable set of
programs.
Thanks for the help.
Jeff