diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-20 05:46:12 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-20 05:46:12 +0000 |
commit | 67946ae23672c422d102a5fb0eee8e237b2b10db (patch) | |
tree | 34227c89bbb4c8f3f2e77163c3e069d1cd07c684 /screen/screen_4.0.1.oe | |
parent | b8ca3ab682cf5026455f2a73d521c6c6222839aa (diff) |
BUGFIX: Fix up the screen build failures (explicitly disable the use of PAM, etc).
BKrev: 400cc0a4SPurOy9T0PSJwyg95_uw4A
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 +} |