diff options
-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 } |