summaryrefslogtreecommitdiff
path: root/sysutils/rdup/files/patch-rdup-ln
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/rdup/files/patch-rdup-ln')
-rw-r--r--sysutils/rdup/files/patch-rdup-ln23
1 files changed, 0 insertions, 23 deletions
diff --git a/sysutils/rdup/files/patch-rdup-ln b/sysutils/rdup/files/patch-rdup-ln
deleted file mode 100644
index 7e4d6643da9e..000000000000
--- a/sysutils/rdup/files/patch-rdup-ln
+++ /dev/null
@@ -1,23 +0,0 @@
---- sh/rdup-ln.orig 2009-10-09 23:37:34.000000000 -0700
-+++ sh/rdup-ln 2009-10-09 23:39:40.000000000 -0700
-@@ -27,7 +27,7 @@
- fi
-
- DATESTR='+%Y%m/%d'
--TODAY=$(date $DATESTR)
-+TODAY=$(gdate $DATESTR)
- TOPDIR=$1
-
- if [[ -z $TOPDIR ]]; then
-@@ -44,9 +44,9 @@
-
- let i=1
- while [[ $i -le $LOOKBACK ]]; do
-- D=$(date $DATESTR --date "$i days ago")
-+ D=$(gdate $DATESTR --date "$i days ago")
- if [[ -d $TOPDIR/$D ]]; then
-- if ! cp -plr $TOPDIR/$D/* $TOPDIR/$TODAY; then
-+ if ! gcp -plr $TOPDIR/$D/* $TOPDIR/$TODAY; then
- exit 2
- fi
- exit 0