diff options
Diffstat (limited to 'packages/gsm/pty_0.0.bb')
-rw-r--r-- | packages/gsm/pty_0.0.bb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/gsm/pty_0.0.bb b/packages/gsm/pty_0.0.bb deleted file mode 100644 index ab767f7979..0000000000 --- a/packages/gsm/pty_0.0.bb +++ /dev/null @@ -1,15 +0,0 @@ -DESCRIPTION = "Forwards a socket to a tty" -LICENSE = "GPLv2" -PR = "r1" - -SRC_URI = "file://pty.c" - -do_compile() { - cp ${WORKDIR}/*.c ${S}/ - ${CC} pty.c -o pty -I${STAGING_INCDIR} -L${STAGING_LIBDIR} -} - -do_install() { - install -d ${D}${bindir} - install -m 0755 pty ${D}${bindir}/ -} |