summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-06-06 07:23:31 +0000
committerJim Meyering <jim@meyering.net>2003-06-06 07:23:31 +0000
commit2aad14c59a7cd7fdb45aa68b9ced6b1a81484395 (patch)
tree42d9f00b0bdf0053a97701823c19fab09997fd4c
parentccda0b0c8b5b076d49c6a9838331a7a68d324789 (diff)
downloadcoreutils-2aad14c59a7cd7fdb45aa68b9ced6b1a81484395.tar.xz
.
-rw-r--r--README-cvs-timestamps28
1 files changed, 0 insertions, 28 deletions
diff --git a/README-cvs-timestamps b/README-cvs-timestamps
deleted file mode 100644
index 17247ffa7..000000000
--- a/README-cvs-timestamps
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# *** W A R N I N G ***
-#
-# Use this script at your peril.
-# It is useful if you lack the proper versions of the maintainer-required
-# programs (e.g., autoconf, automake, aclocal, gettext, bison, info) and
-# you are SURE the checked-in files generated by those programs like all
-# up-to-date enough so that everything will work.
-#
-# Instead of using this script, consider installing private versions
-# of the required packages.
-
-# FIXME make sure we have GNU touch, find, and xargs
-
-t1='-6 min'
-t2='-5 min'
-t3='-4 min'
-t4='-3 min'
-
-find . -type f -print0 |xargs -0 touch -d "$t1"
-test -d m4 \
- && find m4 -name '*.m4' -print0 |xargs -r0 touch -d "$t2"
-touch -d "$t3" aclocal.m4 configure config.hin
-find . -type f -name '*.po' -print0 |xargs -r0 touch -d "$t3"
-find . -type f -name '*.info' -print0 |xargs -r0 touch -d "$t3"
-find . -type f -name '*.y'|sed 's/\.y$/\.c/' |xargs -r touch -d "$t3"
-find . -name Makefile.in -print0 |xargs -0 touch -d "$t4"