Browse Source

The majority of replacements except for passwd*, shadow, and ld.so.conf have

$Id$ and made by make_debian.  Original CVS information is now preserved so
that non-root users can't edit global replacements, the basic idea is that
root will usually be using an editor like Emacs in
$HOME/.gbootroot/yard/Replacements which respects that CVS versioned files
outside of the repository are read-only.  Users should make copies of
versioned replacements which they want to edit, for instance:
fstab.debian-1000
master
freesource 23 years ago
parent
commit
abc92cf316
  1. 10
      add-ons/yard/make-debian-X11/make_debian-X11_pkg
  2. 10
      gbootroot_pkg

10
add-ons/yard/make-debian-X11/make_debian-X11_pkg

@ -142,10 +142,12 @@ if (-d $packaging_place) {
if ($real_gid != $gid) {
system "chgrp $real_gid $File::Find::name";
}
if (/CVS/) {
chdir(dirname($File::Find::name));
system "rm -rf CVS";
}
# Keeping versioning is a great idea for Replacements
# if (/CVS/) {
# chdir(dirname($File::Find::name));
# system "rm -rf CVS";
# }
} , $packaging_place ;
}

10
gbootroot_pkg

@ -140,10 +140,12 @@ if (-d $packaging_place) {
if ($real_gid != $gid) {
system "chgrp $real_gid $File::Find::name";
}
if (/CVS/) {
chdir(dirname($File::Find::name));
system "rm -rf CVS";
}
# Keeping versioning is a great idea for Replacements
# if (/CVS/) {
# chdir(dirname($File::Find::name));
# system "rm -rf CVS";
# }
} , $packaging_place ;
}

Loading…
Cancel
Save