From: Jim Meyering Date: Thu, 13 May 1993 01:09:14 +0000 (+0000) Subject: GNU file utilities X-Git-Tag: FILEUTILS-3_5_4 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=a73c9d84fca6144d8aad9e4104a4a18f87dcb23e;p=gnulib.git GNU file utilities --- diff --git a/lib/Makefile.in b/lib/Makefile.in index 8a4dc8480e..3377776edc 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -66,7 +66,7 @@ realclean: distclean dist: for file in $(DISTFILES); do \ ln $$file ../`cat ../.fname`/lib \ - || cp $$file ../`cat ../.fname`/lib; \ + || cp -p $$file ../`cat ../.fname`/lib; \ done libfu.a: $(OBJECTS) diff --git a/lib/makepath.c b/lib/makepath.c index 123d6abea7..e61579021c 100644 --- a/lib/makepath.c +++ b/lib/makepath.c @@ -46,9 +46,11 @@ char *alloca (); #include #endif -#if defined (STDC_HEADERS) || defined (HAVE_ERRNO_H) +#ifdef HAVE_ERRNO_H #include -#else +#endif + +#ifndef STDC_HEADERS extern int errno; #endif