diff options
author | Michael Smith <msmith@cbnco.com> | 2009-06-26 08:16:06 -0400 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2009-06-26 13:54:27 +0100 |
commit | ceb3562c1e148c5c761d51202789b5f8f1fcb6b6 (patch) | |
tree | a4682bfcf208e2858deb4b1fde33ab1cfe5479ba /recipes/tcpdump/tcpdump_3.9.7.bb | |
parent | 5b8e90765bafd4871489c35040af7a2e5163ad03 (diff) |
tcpdump: fix mix of tabs and spaces
Signed-off-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/tcpdump/tcpdump_3.9.7.bb')
-rw-r--r-- | recipes/tcpdump/tcpdump_3.9.7.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/recipes/tcpdump/tcpdump_3.9.7.bb b/recipes/tcpdump/tcpdump_3.9.7.bb index ba9710d86a..163d74f2ca 100644 --- a/recipes/tcpdump/tcpdump_3.9.7.bb +++ b/recipes/tcpdump/tcpdump_3.9.7.bb @@ -5,8 +5,10 @@ SECTION = "console/network" PRIORITY = "optional" DEPENDS = "libpcap" -SRC_URI = "http://www.tcpdump.org/release/tcpdump-${PV}.tar.gz \ - file://tcpdump_configure_no_-O2.patch;patch=1" +SRC_URI = " \ + http://www.tcpdump.org/release/tcpdump-${PV}.tar.gz \ + file://tcpdump_configure_no_-O2.patch;patch=1 \ +" inherit autotools @@ -15,6 +17,6 @@ EXTRA_OECONF = "--without-crypto" do_configure() { gnu-configize oe_runconf - sed -i 's:/usr/lib:${STAGING_LIBDIR}:' ./Makefile - sed -i 's:/usr/include:${STAGING_INCDIR}:' ./Makefile + sed -i 's:/usr/lib:${STAGING_LIBDIR}:' ./Makefile + sed -i 's:/usr/include:${STAGING_INCDIR}:' ./Makefile } |