commit 77734623e8198f1a0ebd242fd09e7778def08cbb parent 4ead822ee78ead2d6889705b2f4e007dd5766073 Author: sin <sin@2f30.org> Date: Wed, 25 Sep 2013 16:23:01 +0100 Put ncurses in the include path for tmux Diffstat:
M | pkgs/tmux | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pkgs/tmux b/pkgs/tmux @@ -12,7 +12,8 @@ unpack() { build() { pushd src/tmux-1.8 - CC=x86_64-linux-musl-gcc ./configure --prefix=$root LDFLAGS=-static || return 1 + CC=x86_64-linux-musl-gcc ./configure --prefix=$root LDFLAGS=-static \ + CFLAGS="-I$libcroot/include/ncurses" || return 1 make -j$nprocs || return 1 popd }