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

Re: dh --buildsystem=none?



On 15 June 2015 at 16:34, Ole Streicher <olebole@debian.org> wrote:
> Hi,
>
> I have a package that needs no build, but just the installation of the
> (script) files. All installation is done via debian/install,
> debian/docs, debian/examples.
>
> So, the debian/rules file is simple
>
> -------8<----------
> #!/usr/bin/make -f
> %:
>         dh $@
> -------8<----------
>
> However, for some reason dh tries to run "configure" etc., which
> ofcourse fails. How can I explicitely specify a build system that
> actually does nothing?
>

>From the dh_auto_configure man page, it seems it looks for
./configure, Makefile.PL, Build.PL or cmake files.

Anyway, I guess you can always use something like:

override_dh_auto_configure:
 # nothing

-- 
Arturo Borrero González


Reply to: