bug-autoconf
[Top][All Lists]
Advanced

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

Re: Faillure to autogenerate file on hpux


From: Russ Allbery
Subject: Re: Faillure to autogenerate file on hpux
Date: Fri, 29 Mar 2013 14:56:51 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (gnu/linux)

Bastien ROUCARIES <address@hidden> writes:

> Last version of imagemagick fail to build on hpux during build. We
> supsect  a autoconf bug.

> Unfortunatly we have no access to hpux.

> cd . && /bin/sh ./config.status config/delegates.xml
> config.status: creating config/delegates.xml
> cd . && /bin/sh ./config.status config/configure.xml
> config.status: creating config/configure.xml
> ln -s PerlMAgick/quantum/Q16.xs
> usage: ln [-f] [-I] [-s] f1 f2
> ln [-f] [-I] [-s] f1 ... fn d1

That ln command looks like something that you're telling Autoconf to run
with AC_CONFIG_COMMANDS, and it's not portable.  Omitting the destination
argument to ln is a GNU extension.  Try changing that to:

    ln -s PerlMAgick/quantum/Q16.xs Q16.xs

-- 
Russ Allbery (address@hidden)             <http://www.eyrie.org/~eagle/>



reply via email to

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