Bug 460926 A11y hierachy is broken on Ubuntu 8.10 (GNOME 2.24), r=Evan.Yan sr=roc
[wine-gecko.git] / build / autoconf / match-dir.sh
blobc579a9d3a7188cde67b925c923a02726a3c23d95
1 #!/bin/sh
3 # ***** BEGIN LICENSE BLOCK *****
4 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 # The contents of this file are subject to the Mozilla Public License Version
7 # 1.1 (the "License"); you may not use this file except in compliance with
8 # the License. You may obtain a copy of the License at
9 # http://www.mozilla.org/MPL/
11 # Software distributed under the License is distributed on an "AS IS" basis,
12 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 # for the specific language governing rights and limitations under the
14 # License.
16 # The Original Code is mozilla.org code.
18 # The Initial Developer of the Original Code is
19 # Netscape Communications Corporation.
20 # Portions created by the Initial Developer are Copyright (C) 1998
21 # the Initial Developer. All Rights Reserved.
23 # Contributor(s):
25 # Alternatively, the contents of this file may be used under the terms of
26 # either of the GNU General Public License Version 2 or later (the "GPL"),
27 # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 # in which case the provisions of the GPL or the LGPL are applicable instead
29 # of those above. If you wish to allow use of your version of this file only
30 # under the terms of either the GPL or the LGPL, and not to allow others to
31 # use your version of this file under the terms of the MPL, indicate your
32 # decision by deleting the provisions above and replace them with the notice
33 # and other provisions required by the GPL or the LGPL. If you do not delete
34 # the provisions above, a recipient may use your version of this file under
35 # the terms of any one of the MPL, the GPL or the LGPL.
37 # ***** END LICENSE BLOCK *****
40 # This script will match a dir with a set of dirs.
42 # Usage: match-dir.sh match [dir1 dir2 ... dirn]
44 # Send comments, improvements, bugs to ramiro@netscape.com
47 if [ -f Makefile ]; then
48 MAKEFILE="Makefile"
49 else
50 if [ -f Makefile.in ]; then
51 MAKEFILE="Makefile.in"
52 else
53 echo
54 echo "There ain't no 'Makefile' or 'Makefile.in' over here: $pwd, dude."
55 echo
56 exit 1
60 # Use DEPTH in the Makefile.in to determine the depth
61 depth=`grep -w DEPTH ${MAKEFILE} | grep "\.\." | awk -F"=" '{ print $2; }'`
62 cwd=`pwd`
64 # Determine the depth count
65 n=`echo $depth | tr '/' ' ' | wc -w`
67 cd $depth
68 objdir=`pwd`
70 path=`echo $cwd | sed "s|^${objdir}/||"`
72 match=$path
74 for i in $*
76 # echo "Looking for $match in $i"
78 echo $i | grep -q -x $match
80 if [ $? -eq 0 ]
81 then
82 echo "1"
84 exit 0
87 # echo "Looking for $i in $match"
89 echo $match | grep -q $i
91 if [ $? -eq 0 ]
92 then
93 echo "1"
95 exit 0
97 done
99 echo "0"
101 exit 0