Changeset 887 in MondoRescue


Ignore:
Timestamp:
Oct 8, 2006, 4:05:57 PM (18 years ago)
Author:
Bruno Cornec
Message:

Some final improvements for build with Qemu (problem with tar and path with ../..)

Location:
branches/2.2.0/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0/tools/build2pkg

    r886 r887  
    8383            status=-1
    8484        else
    85             export pkg1="`egrep '^Wrote:' $log | cut -d: -f2`"
     85            export pkg1="`egrep '^Wrote:' $log | grep -v debuginfo | cut -d: -f2`"
    8686            if [ -f /usr/bin/rpmlint ]; then
    8787                /usr/bin/rpmlint $pkg1
  • branches/2.2.0/tools/build2qemu

    r885 r887  
    6161    $TOOLHOME/file2ftp
    6262fi
    63 cd $TOOLHOME/..
    64 tar cfz $MONDOTMP/mkmondo.tar.gz $TOOLHOME $MONDOTMP/mkmondo $TOPDIR/${VER}-$TAG
     63
     64# TOPDIR contains ../.. which causes problems to tar
     65# so we need to recompute it
     66cd $TOPDIR
     67dir=`pwd`
     68tar cfz $MONDOTMP/mkmondo.tar.gz $TOOLHOME $MONDOTMP/mkmondo $dir/${VER}-$TAG
    6569
    6670for m in $VMS; do
Note: See TracChangeset for help on using the changeset viewer.