From: Jim Meyering Date: Wed, 27 Aug 2003 09:04:55 +0000 (+0000) Subject: . X-Git-Tag: COREUTILS-5_0_91~91 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ddc3343bf9e87a1a52116b86832c18f66b6db7bc;p=platform%2Fupstream%2Fcoreutils.git . --- diff --git a/aclocal.m4 b/aclocal.m4 index 0a30ea2..ad3f61d 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -2009,12 +2009,14 @@ AC_DEFUN([gl_PREREQ_MKDIR], AC_CHECK_DECLS_ONCE(free) ]) -#serial 3 +#serial 4 # On some hosts (e.g., HP-UX 10.20, SunOS 4.1.4, Solaris 2.5.1), mkstemp has a # silly limit that it can create no more than 26 files from a given template. -# Other systems lack mkstemp altogether. On either type of system, arrange -# to use the replacement function. +# Other systems lack mkstemp altogether. +# On OSF1/Tru64 V4.0F, the system-provided mkstemp function can create +# only 32 files per process. +# On systems like the above, arrange to use the replacement function. AC_DEFUN([UTILS_FUNC_MKSTEMP], [dnl AC_REPLACE_FUNCS(mkstemp) @@ -2029,7 +2031,7 @@ AC_DEFUN([UTILS_FUNC_MKSTEMP], int main () { int i; - for (i = 0; i < 30; i++) + for (i = 0; i < 70; i++) { char template[] = "conftestXXXXXX"; int fd = mkstemp (template); diff --git a/src/Makefile.in b/src/Makefile.in index 3db6e20..72979b9 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -873,7 +873,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \