On 2006-04-30, Bob Rossi <[EMAIL PROTECTED]> wrote:
> Unfortunatly, that doesn't work either.
>
> test -z "/progs" || mkdir -p -- "/progs"
> mkdir: cannot create directory `/progs': Permission denied
abs_top_builddir isn't set in the Makefile (with automake 1.8.5, and I
can't see a ChangeLog entry in 1.9.6 saying this has changed), so "make"
replaces $(abs_top_builddir) with the empty string. However
@abs_top_builddir@ is substituted, so you should be able to do:
abs_top_builddir = @abs_top_builddir@
noinst_bin_PROGRAMS = gdbmi_driver
noinst_bindir = $(abs_top_builddir)/progs
Cheers,
Olly
_______________________________________________
http://lists.gnu.org/mailman/listinfo/libtool