~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): Adam Conrad
  • Date: 2005-10-24 13:02:52 UTC
  • mfrom: (0.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051024130252-1falzxxyrndau13m
Tags: 2.0.55-3
Brown paper bag release: Tidy up CFLAGS and APR configure call to make
sure that what we link to agrees with what apu-config tells others to do.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash
2
2
source debian/scripts/vars
3
3
if [ x$SOURCE_DIR = x ];then
4
 
        files=`find -type f -maxdepth 1 -mindepth 1`
5
 
        dirs=`find -type d -maxdepth 1 -mindepth 1 ! -name 'debian' ! -name 'upstream'`
 
4
        files=`find -maxdepth 1 -mindepth 1 -type f`
 
5
        dirs=`find -maxdepth 1 -mindepth 1 -type d ! -name 'debian' ! -name 'upstream'`
6
6
        echo files=\"$files\"
7
7
        echo dirs=\"$dirs\"
8
8
else