Alon Bar-Lev <[email protected]> writes:

> Working, thanks!

Thanks for testing. ---disable-static checked in now.

> BTW:
> There is an issue with:
> $ ./configure
> $ make install DESTDIR=/tmp/xxx

Skipping make is not currently supported. I.e., you're supposed to do

  $ ./configure
  $ make
  $ make install

or even better

  $ ./configure
  $ make
  $ make check && make install

Maybe a make install without a previous make all should be supported?

Nevertheless, I guess the reported problem is a bug in
tools/Makefile.in, the rule

$(getopt_OBJS):
        ( cd .. && $(MAKE) $@ )

Does it work to replace $@ by `basename $@` ? (I haven't thought this
through, maybe there's some better way to do it...)

Regards,
/Niels

-- 
Niels Möller. PGP-encrypted email is preferred. Keyid C0B98E26.
Internet email is subject to wholesale government surveillance.
_______________________________________________
nettle-bugs mailing list
[email protected]
http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs

Reply via email to