~ubuntu-branches/ubuntu/quantal/arora/quantal

« back to all changes in this revision

Viewing changes to git_hooks/pre-commit_manualtestbuild

  • Committer: Bazaar Package Importer
  • Author(s): Roderick B. Greening
  • Date: 2009-10-01 16:08:58 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20091001160858-h1wnt3ddyzl07nih
Tags: 0.10.0-0ubuntu1
* New upstream release 
* Remove patches
  - kubuntu_01_google_lucky.diff - Open Search now used upstream
  - kubuntu_02_default_bookmarks.diff - bookmarks fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    QMAKE=qmake-qt4
10
10
fi
11
11
dir=`dirname $0`
12
 
for file in `git-diff-index --name-only HEAD | grep .cpp` ; do
13
 
    file=`echo $file | sed -e s/.cpp//g -e 's/.*\///g'`
 
12
for file in `git diff-index --name-only HEAD | grep .cpp` ; do
 
13
    file=`echo $file | sed -e 's/src\///g' -e 's/.cpp//g'`
 
14
    if [ ! -d $dir/../autotests/$file ] ; then
 
15
        file=`echo $file | sed -e 's/.*\///g'`;
 
16
    fi
14
17
    if [ -d $dir/../manualtests/$file ] ; then
15
18
        echo "--checking manualtest (should still build): $file--"
16
19
        cd "$dir/../../manualtests/$file/";