summaryrefslogtreecommitdiffstats
path: root/src/ncurses.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/ncurses.mk')
-rw-r--r--src/ncurses.mk29
1 files changed, 14 insertions, 15 deletions
diff --git a/src/ncurses.mk b/src/ncurses.mk
index 48aedb5..959e918 100644
--- a/src/ncurses.mk
+++ b/src/ncurses.mk
@@ -19,19 +19,18 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- cd '$(1)' && ./configure \
- --host='$(TARGET)' \
- --prefix=$(PREFIX)/$(TARGET) \
- --disable-home-terminfo \
- --enable-sp-funcs \
- --enable-term-driver \
- --enable-interop \
- --without-debug \
- --without-ada \
- --without-manpages \
- --enable-pc-files \
- --with-normal \
- --without-shared
- $(MAKE) -C '$(1)' -j '$(JOBS)' install
+ cd '$(1)' && ./configure \
+ --host='$(TARGET)' \
+ --prefix=$(PREFIX)/$(TARGET) \
+ --disable-home-terminfo \
+ --enable-sp-funcs \
+ --enable-term-driver \
+ --enable-interop \
+ --without-debug \
+ --without-ada \
+ --without-manpages \
+ --enable-pc-files \
+ --with-normal \
+ --without-shared
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install
endef
-