diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-01-03 23:17:51 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2014-01-03 23:17:51 +0200 |
commit | 785cc0fa071851c402a584ce4d63110c88b385d8 (patch) | |
tree | fdaeb3df76b19612c80dfb90e395af8796962365 /main/abuild/0001-abuild-use-posix-syntax-for-find.patch | |
parent | 73cbccee55adadf6260a3a71484d518984035b1f (diff) | |
download | aports-785cc0fa071851c402a584ce4d63110c88b385d8.tar.bz2 aports-785cc0fa071851c402a584ce4d63110c88b385d8.tar.xz |
main/abuild: use posix syntax for find
Diffstat (limited to 'main/abuild/0001-abuild-use-posix-syntax-for-find.patch')
-rw-r--r-- | main/abuild/0001-abuild-use-posix-syntax-for-find.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/main/abuild/0001-abuild-use-posix-syntax-for-find.patch b/main/abuild/0001-abuild-use-posix-syntax-for-find.patch new file mode 100644 index 0000000000..b0fbe56310 --- /dev/null +++ b/main/abuild/0001-abuild-use-posix-syntax-for-find.patch @@ -0,0 +1,25 @@ +From eee827b16be8458ac50dabb9d96aecff513d0391 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Timo=20Ter=C3=A4s?= <timo.teras@iki.fi> +Date: Fri, 3 Jan 2014 23:15:09 +0200 +Subject: [PATCH] abuild: use posix syntax for find + +--- + abuild.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/abuild.in b/abuild.in +index 9bb2297..fa3971a 100755 +--- a/abuild.in ++++ b/abuild.in +@@ -1262,7 +1262,7 @@ default_dev() { + usr/share/qt*/mkspecs \ + usr/lib/qt*/mkspecs \ + usr/lib/cmake \ +- $(find -name include -type d) \ ++ $(find . -name include -type d) \ + $(find lib/ usr/ -name '*.[acho]' \ + -o -name '*.prl' 2>/dev/null); do + if [ -e "$pkgdir/$i" ] || [ -L "$pkgdir/$i" ]; then +-- +1.8.5.2 + |