diff options
author | joe <joe@FreeBSD.org> | 2001-08-19 20:22:55 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-08-19 20:22:55 +0800 |
commit | 5219c16551834d31cc524276c18e04eba9bbf3ee (patch) | |
tree | 2a440e7d8eae450ec966106c37f25ece6522ae4e | |
parent | dfe9234e6cd7931e34a971aef1ce8168a84a0158 (diff) | |
download | freebsd-ports-gnome-5219c16551834d31cc524276c18e04eba9bbf3ee.tar.gz freebsd-ports-gnome-5219c16551834d31cc524276c18e04eba9bbf3ee.tar.zst freebsd-ports-gnome-5219c16551834d31cc524276c18e04eba9bbf3ee.zip |
Writing down the last directory in a multidirectory commit isn't
optional.
-rwxr-xr-x | CVSROOT/commit_prep.pl | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/CVSROOT/commit_prep.pl b/CVSROOT/commit_prep.pl index 39748ed56e34..7c1f47d2fd2d 100755 --- a/CVSROOT/commit_prep.pl +++ b/CVSROOT/commit_prep.pl @@ -39,11 +39,6 @@ use CVSROOT::cfg; # $check_id = 0; -# -# Record the directory for later use by the log_accumulate stript. -# -$record_directory = 1; - ############################################################ # # Constants @@ -252,7 +247,6 @@ if ($check_id != 0) { # by the log_accumulate script to determine when it is processing # the final directory of a multi-directory commit. # -if ($record_directory != 0) { - &write_line($cfg::LAST_FILE, $directory); -} +&write_line($cfg::LAST_FILE, $directory); + exit(0); |