From f494e3c6ec4d567db67f4caef275475277288c40 Mon Sep 17 00:00:00 2001 From: Ondrej Vasik Date: Aug 24 2009 09:45:05 +0000 Subject: fix typo --- diff --git a/coreutils-7.5-kojiutimensatskip.patch b/coreutils-7.5-kojiutimensatskip.patch index e8e3af2..98f9907 100644 --- a/coreutils-7.5-kojiutimensatskip.patch +++ b/coreutils-7.5-kojiutimensatskip.patch @@ -9,7 +9,7 @@ diff -urNp coreutils-7.5-orig/src/copy.c coreutils-7.5/src/copy.c + int err = utimensat (AT_FDCWD, file, timespec, AT_SYMLINK_NOFOLLOW); + /* When configuring on a system with new headers and libraries, and + running on one with a kernel that is old enough to lack the syscall, -+ utimensat fails with ENOTSUP. Ignore that. */ ++ utimensat fails with ENOSYS. Ignore that. */ + if (err && errno == ENOSYS) + err = 0; + return err;