things
This commit is contained in:
@@ -11,9 +11,9 @@ source = tarball_source(
|
||||
strip_components = 1,
|
||||
)
|
||||
host_deps = ["binutils", "gcc"]
|
||||
deps = ["ncurses"]
|
||||
deps = [options.libc, "ncurses"]
|
||||
|
||||
configure, build, install = autotools(
|
||||
configure, build, _ = autotools(
|
||||
configure_args = ["--with-curses"],
|
||||
configure_env = {
|
||||
# Force linking against the system curses; otherwise readline's
|
||||
@@ -21,3 +21,9 @@ configure, build, install = autotools(
|
||||
"bash_cv_termcap_lib": "ncursesw",
|
||||
},
|
||||
)
|
||||
|
||||
# Readline overwrites DESTDIR
|
||||
def install(ctx, pkg):
|
||||
autotools_install(ctx, pkg, extra_args = [
|
||||
"DESTDIR=" + pkg.dest_dir
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user