aboutsummaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2008-01-28 14:54:48 +0000
committerPav Lucistnik <pav@FreeBSD.org>2008-01-28 14:54:48 +0000
commit299c8bb3180880c0efd92851555cb73c57128799 (patch)
tree8f2c119dd10961c0f1cd21aa294d11cc6e65845c /sysutils
parent4daa554c27b35c83e4ad5bb930aa02e90a2c3c5f (diff)
downloadports-299c8bb3180880c0efd92851555cb73c57128799.tar.gz
ports-299c8bb3180880c0efd92851555cb73c57128799.zip
Notes
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/condor/files/patch-condor_configure27
1 files changed, 0 insertions, 27 deletions
diff --git a/sysutils/condor/files/patch-condor_configure b/sysutils/condor/files/patch-condor_configure
deleted file mode 100644
index ab045fd582fe..000000000000
--- a/sysutils/condor/files/patch-condor_configure
+++ /dev/null
@@ -1,27 +0,0 @@
---- condor_configure.orig Thu Feb 1 07:11:10 2007
-+++ condor_configure Sat Apr 28 18:26:02 2007
-@@ -134,6 +134,7 @@
- $opt_maybe_daemon_owner,
- $opt_install_log,
- $opt_verbose,
-+ $opt_overwrite,
- );
-
-
-@@ -482,6 +483,7 @@
- "install-log=s" => \$opt_install_log,
- "verbose!" => \$opt_verbose,
- "help" => sub {print $Usage; exit 0},
-+ "overwrite" => \$opt_overwrite,
- ) or die $Usage;
-
- if ($opt_local_dir && !($opt_local_dir =~ m/^\//)) {
-@@ -629,7 +631,7 @@
-
- # Move the sbin directories instead of overwriting them,
- # so that the running daemons don't blow up
-- if ( -d "$release_dir/sbin" ) {
-+ if ( !$opt_overwrite && -d "$release_dir/sbin" ) {
- rename ("$release_dir/sbin", "$release_dir/sbin.old.$timestamp") or
- die "Unable to move $release_dir/sbin!\n";
- }