libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: noinst_bindir


From: Olly Betts
Subject: Re: noinst_bindir
Date: Sun, 30 Apr 2006 12:05:57 +0000 (UTC)
User-agent: slrn/0.9.8.1 (Linux)

On 2006-04-30, Bob Rossi <address@hidden> 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]