~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to debian/scripts/source.clean

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
source debian/scripts/vars
3
 
if [ x$SOURCE_DIR = x ];then
4
 
        files=`find -maxdepth 1 -mindepth 1 -type f`
5
 
        dirs=`find -maxdepth 1 -mindepth 1 -type d ! -name 'debian' ! -name 'upstream'`
6
 
        echo files=\"$files\"
7
 
        echo dirs=\"$dirs\"
8
 
else
9
 
        rm -rf $SOURCE_DIR $STAMP_DIR/upstream $STAMP_DIR/patches
10
 
        rm -f $STAMP_DIR/{source.{clean,build,make}}
11
 
fi