Modify

#688 closed defect (fixed)

make distclean error on MacOS X

Reported by: Christian Ebert <blacktrash@…> Owned by:
Priority: normal Milestone:
Component: BitlBee Version: devel
Keywords: Cc:
IRC client+version: Client-independent Operating System: MacOS
OS version/distro:

Description

xargs on MacOS X (BSD as well?) does not have an -r option. Therefore make disclean fails here:

find . -name .depend | xargs -r rmdir

The following incantations would work here (not sure about their portability):

find . -type d -name .depend | xargs rm -rf find . -type d -name .depend -exec rm -rf {} \; find . -type d -name .depend -delete

-type d can probably be omitted as there are only directories called .depend anyway.

Attachments (0)

Change History (1)

comment:1 Changed at 2010-12-05T00:00:15Z by wilmer

Resolution: fixed
Status: newclosed

Modify Ticket

Action
as closed The ticket will remain with no owner.
The resolution will be deleted.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.