Browse Source

This removes any existing stuff under tmp/gbootroot in the specs if it

exists, which can creates nasties when a build fails at -bl, and
removed modules/CVS filter from gbootroot_pkg which didn't effect 7.3
or Mandrake 9.0, but did effect 8.0, now have to check whether this is
working properly on Debian again.  Not sure why these directories were
causing a problem to begin with.
master
freesource 22 years ago
parent
commit
56aae6038b
  1. 3
      gbootroot_pkg
  2. 5
      pkg/rpm/gbootroot-mdk.spec
  3. 5
      pkg/rpm/gbootroot.spec

3
gbootroot_pkg

@ -415,9 +415,6 @@ if ( $ARGV[0] eq "both" || $ARGV[0] eq "rpm" ) {
"/usr/share/doc-base/gbootroot\n", 1,
"/usr/lib/menu/gbootroot\n", 1,
"/usr/lib/bootroot/yard/Replacements/lib/modules/CVS/Root\n", 1,
"/usr/lib/bootroot/yard/Replacements/lib/modules/CVS/Repository\n", 1,
"/usr/lib/bootroot/yard/Replacements/lib/modules/CVS/Entries\n", 1,
"/usr/share/doc/gbootroot/Changes.gz\n", 1,
"/usr/share/doc/gbootroot/copyright\n", 1,
"/usr/share/doc/gbootroot/changelog.Debian.gz\n", 1,

5
pkg/rpm/gbootroot-mdk.spec

@ -91,7 +91,10 @@ as mdk.
%prep
%setup -n gbootroot-%{version}
#chown -R root:root .
if [ ! -e /tmp/gbootroot ] ; then
if [ -e /tmp/gbootroot ] ; then
rm -rf /tmp/gbootroot;
mkdir /tmp/gbootroot;
elif [ ! -e /tmp/gbootroot ] ; then
mkdir /tmp/gbootroot;
fi;
install -d $HOME/gbootroot/RPMS/i386

5
pkg/rpm/gbootroot.spec

@ -89,7 +89,10 @@ as mdk.
%prep
%setup -n gbootroot-%{version}
#chown -R root:root .
if [ ! -e /tmp/gbootroot ] ; then
if [ -e /tmp/gbootroot ] ; then
rm -rf /tmp/gbootroot;
mkdir /tmp/gbootroot;
elif [ ! -e /tmp/gbootroot ] ; then
mkdir /tmp/gbootroot;
fi;
install -d $HOME/gbootroot/RPMS/i386

Loading…
Cancel
Save