aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/opie/opie_find_patches.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/opie/opie_find_patches.sh')
-rwxr-xr-xcontrib/opie/opie_find_patches.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/opie/opie_find_patches.sh b/contrib/opie/opie_find_patches.sh
new file mode 100755
index 0000000000..ce8574ca5a
--- /dev/null
+++ b/contrib/opie/opie_find_patches.sh
@@ -0,0 +1,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
+