octave-maintainers
[Top][All Lists]
Advanced

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

Re: pkg - post_install.m


From: Mike Miller
Subject: Re: pkg - post_install.m
Date: Fri, 6 Sep 2013 08:18:28 -0400

On Fri, Sep 6, 2013 at 09:52:32 +0200, marco Vassallo wrote:
> After the installation, I need to move a file from the folder where the
> DLD-function are installed ("x86_64-unknown-linux-gnu-api-v48+" on my pc) to
> another directory.

Have you tried building the feval.oct file under a @function folder as
part of your package build rules? Something like this in your
Makefile.in:

@function/feval.oct: feval.cc function.h
        mkdir -p @function
        $(MKOCTFILE) $(CPPFLAGS) -I. feval.cc $(LDFLAGS) $(LIBS) -o $@

Or even rename the file in the source tree to src/@function/feval.cc.
I don't know that it will work, but that's what I would try.

-- 
mike


reply via email to

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