diff options
Diffstat (limited to 'screen/screen_4.0.1.oe')
-rw-r--r-- | screen/screen_4.0.1.oe | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/screen/screen_4.0.1.oe b/screen/screen_4.0.1.oe index 8136f1d0c2..2eaf370619 100644 --- a/screen/screen_4.0.1.oe +++ b/screen/screen_4.0.1.oe @@ -6,4 +6,9 @@ SRC_URI := ftp://ftp.uni-erlangen.de/pub/utilities/screen/screen-${PV}.tar.gz \ inherit autotools -EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5" +EXTRA_OECONF = '--with-pty-mode=0620 --with-pty-group=5 --disable-pam' +do_configure_prepend () { + for f in comm.h kmapdef.c term.h tty.c; do + cp ${S}/$f.dist ${S}/$f + done +} |