This is a patch file for "coreutils" 8.25. It removes an unwanted warning message. --- coreutils-8.25.old/src/touch.c +++ coreutils-8.25/src/touch.c @@ -396,6 +396,7 @@ newtime[1] = newtime[0]; date_set = true; +#ifdef NOTDEF // Suppress an unwanted message if (! getenv ("POSIXLY_CORRECT")) { struct tm const *tm = localtime (&newtime[0].tv_sec); @@ -412,6 +413,7 @@ tm->tm_year + 1900L, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec); } +#endif // Endif NOTDEF optind++; }