bug-gnu-utils
[Top][All Lists]
Advanced

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

findutils-4.1


From: DOERNTGE, RAINER
Subject: findutils-4.1
Date: Tue, 17 Feb 2004 13:57:23 +0100

Hi folks,

I tried to compile the GNU findutils on HPUX 11i using 64-bit support 
([l]stat64() instead of [l]stat(), which succeeded nicely.
Afterwards, though, I had some spurious error messages like
find: <some_file_path_name_that_does_exist>: No such file or directory
The debugger told me that at line 345 in file.c, getwd() returns something else 
than the program expects. Changing that line from
if ((*xstat) (name, &stat_buf) != 0)
to
if (chdir(parent) < 0 ||
    (*xstat) (name, &stat_buf) != 0)
solved the problem.

Full diff is enclosed.

 <<findutils-4.1-4.1_64.diff.gz>> 

Have a nice day,

Rainer Dörntge
LRS IT Services

Lufthansa Revenue Services GmbH
IT Services - HAM DP/AS
Schützenwall 1
D - 22844 Norderstedt

Phone:  +49 40 5070-7012
Fax:    +49 40 5070-7827
E-mail: mailto:address@hidden
Web:    http://www.revenue-accounting.com

Attachment: findutils-4.1-4.1_64.diff.gz
Description: findutils-4.1-4.1_64.diff.gz


reply via email to

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