diff options
author | Mike Fiore <mfiore@multitech.com> | 2013-04-10 14:29:02 -0500 |
---|---|---|
committer | Mike Fiore <mfiore@multitech.com> | 2013-04-10 14:29:02 -0500 |
commit | 1b9d6b29557db36a5ea181df0f180aed64f1f53e (patch) | |
tree | e3ca6a277c67ab25be597ac2b2ae5fe45cd6110a | |
parent | 37f4b5a103a5f0b0ba8a0ccedffad9f4ec1d7914 (diff) |
autossh: clean up recipe
-rw-r--r-- | multitech/recipes/autossh/autossh_1.4c.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multitech/recipes/autossh/autossh_1.4c.bb b/multitech/recipes/autossh/autossh_1.4c.bb index d1a7452..2303787 100644 --- a/multitech/recipes/autossh/autossh_1.4c.bb +++ b/multitech/recipes/autossh/autossh_1.4c.bb @@ -9,11 +9,11 @@ PR = "r1" SRC_URI = "http://www.harding.motd.ca/autossh/autossh-1.4c.tgz" SRC_URI[md5sum] = "26520eea934f296be0783dabe7fcfd28" -INSANE_SKIP_autossh = "True" +TARGET_CC_ARCH += "${LDFLAGS}" inherit autotools do_install() { - install -d ${D}/usr/bin - install ${S}/autossh ${D}/usr/bin/autossh + install -d ${D}/${bindir} + install ${S}/autossh ${D}/${bindir}/autossh } |