aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/opie/opie_find_patches.sh
blob: ce8574ca5ae7b48bbd75e39383bb3a7da73ff3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

if ! [ -d libqpe ] ; then
    echo "Please execute at the recipes subdir of the OE source tree"
    exit 1
fi

FILES="libqpe libqtaux libopie* libmailwrapper nonworking/opie* opie*"

for i in $FILES ; do
	find $i/* -name '*.patch' 
done