Ignore:
Timestamp:
Oct 9, 2008, 5:53:45 PM (16 years ago)
Author:
slederer
Message:

fixed: files where not copied correctly when preparing debian
build files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/technical/common/build/svn_build_prepare.sh

    r729 r730  
    1414
    1515# when building debian packages, which files from the "debian"
    16 # directory are required (in addition to the package description
    17 # and changelog)
    18 debfiles="control rules"
    19  
     16# directory are required in addition to the package description
     17# and changelog
     18DEBFILES="control rules" 
     19
    2020BUILDUSER=$USER
    2121[ -z $DEST_DIR ] && DEST_DIR="/tmp/build.$BUILDUSER"
     
    179179        # copy files from "debian" directory into the package directory, renaming
    180180        # them accordingly
    181         for f in $debfiles
     181        for f in $DEBFILES
    182182        do
    183             [ -r "$f" ] && cp "debian/$f" ${BUILDTEMP}/src/${PACKAGE}/debian.$f       
     183            [ -r "debian/$f" ] && cp "debian/$f" ${BUILDTEMP}/src/${PACKAGE}/debian.$f       
    184184        done     
    185185    fi
    186186fi
     187exit 0
Note: See TracChangeset for help on using the changeset viewer.