diff options
author | cy <cy@FreeBSD.org> | 2013-09-25 21:19:44 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2013-09-25 21:19:44 +0800 |
commit | 1cbf8bc45e98c362959c77f901dfc714900b255d (patch) | |
tree | 5eb6b3cfddeffaf7a7c493ba569c88b0595c0061 /misc/tkcron/files | |
parent | 9de3a2f383c8a4e9b127736d6d0578c207c61fdd (diff) | |
download | freebsd-ports-gnome-1cbf8bc45e98c362959c77f901dfc714900b255d.tar.gz freebsd-ports-gnome-1cbf8bc45e98c362959c77f901dfc714900b255d.tar.zst freebsd-ports-gnome-1cbf8bc45e98c362959c77f901dfc714900b255d.zip |
This port will not work with tclwrapper.
Switch to USE_TK_RUN.
Diffstat (limited to 'misc/tkcron/files')
-rw-r--r-- | misc/tkcron/files/patch-aa | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/misc/tkcron/files/patch-aa b/misc/tkcron/files/patch-aa index b6c4026ef5ad..c95b85a1c726 100644 --- a/misc/tkcron/files/patch-aa +++ b/misc/tkcron/files/patch-aa @@ -1,6 +1,14 @@ ---- tkcron.tcl Sat Aug 3 17:53:42 1996 -+++ tkcron.tcl Sat Aug 3 17:52:03 1996 -@@ -281,6 +281,7 @@ +--- tkcron.tcl.orig 2013-09-25 00:48:19.068508511 -0700 ++++ tkcron.tcl 2013-09-25 06:10:06.670101791 -0700 +@@ -1,4 +1,6 @@ +-#!/usr/local/bin/wish ++#! /bin/sh ++# the next line restarts using wish \ ++exec /usr/local/bin/wish8.5 $0 ${1+"$@"} + + # A simple interface to ease the creation of crontab jobs + # Cedric BEUST (beust@sophia.inria.fr) +@@ -281,6 +283,7 @@ # Return the crontab string as a list proc parseCrontabFile {str} { @@ -8,4 +16,3 @@ set crontablist [split $str \n] set listlength [llength $crontablist] for {set i 0} {$i < $listlength} {incr i 1} { - |