diff options
Diffstat (limited to 'screen/screen_3.9.15.oe')
-rw-r--r-- | screen/screen_3.9.15.oe | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/screen/screen_3.9.15.oe b/screen/screen_3.9.15.oe index b1912ee82f..0a41bbc66f 100644 --- a/screen/screen_3.9.15.oe +++ b/screen/screen_3.9.15.oe @@ -6,4 +6,9 @@ SRC_URI := ${GNU_MIRROR}/screen/screen-3.9.15.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 +} |