mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
- Forgot to remove a patch file
Reminded by: maintainer
This commit is contained in:
parent
4daa554c27
commit
299c8bb318
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=206321
@ -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";
|
||||
}
|
Loading…
Reference in New Issue
Block a user