GNU file utilities FILEUTILS-3_5_4
authorJim Meyering <jim@meyering.net>
Thu, 13 May 1993 01:09:14 +0000 (01:09 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 13 May 1993 01:09:14 +0000 (01:09 +0000)
lib/Makefile.in
lib/makepath.c

index 8a4dc84..3377776 100644 (file)
@@ -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)
index 123d6ab..e615790 100644 (file)
@@ -46,9 +46,11 @@ char *alloca ();
 #include <stdlib.h>
 #endif
 
-#if defined (STDC_HEADERS) || defined (HAVE_ERRNO_H)
+#ifdef HAVE_ERRNO_H
 #include <errno.h>
-#else
+#endif
+
+#ifndef STDC_HEADERS
 extern int errno;
 #endif