[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Fwd: Re: make modules_install fails with latest fileutils]
From: |
Padraig Brady |
Subject: |
[Fwd: Re: make modules_install fails with latest fileutils] |
Date: |
Thu, 22 Nov 2001 16:32:57 +0000 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120 |
from linux kernel...
-------- Original Message --------
X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4
From: Keith Owens <address@hidden>
To: address@hidden
Cc: address@hidden
Subject: Re: make modules_install fails with latest fileutils
In-reply-to: Your message of "Tue, 20 Nov 2001 19:38:20 BST."
<address@hidden>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Wed, 21 Nov 2001 11:52:26 +1100
Message-ID: <address@hidden>
Sender: address@hidden
Precedence: bulk
X-Mailing-List: address@hidden
On Tue, 20 Nov 2001 19:38:20 +0100,
"Marcel J.E. Mol" <address@hidden> wrote:
>Just had some problems doing a modules_install with
>fileutils-1.1.1-1 (redhat rawhide). The cp command
>in there gives a non-zero return value when it is asked
>to copy the same file in the argument list:
>
>--- Rules.make.org Tue Nov 20 19:36:16 2001
>+++ Rules.make Mon Nov 19 23:48:03 2001
>@@ -173,7 +173,7 @@
> _modinst__: dummy
> ifneq "$(strip $(ALL_MOBJS))" ""
> mkdir -p $(MODLIB)/kernel/$(MOD_DESTDIR)
>- cp -f $(ALL_MOBJS) $(MODLIB)/kernel/$(MOD_DESTDIR)$(MOD_TARGET)
>+ -cp -f $(ALL_MOBJS) $(MODLIB)/kernel/$(MOD_DESTDIR)$(MOD_TARGET)
> endif
(1) Complain to the fileutils maintainer for introducing incompatible
behaviour.
(2) The correct workaround is
cp -f $(sort $(ALL_MOBJS))
$(MODLIB)/kernel/$(MOD_DESTDIR)$(MOD_TARGET)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Fwd: Re: make modules_install fails with latest fileutils],
Padraig Brady <=