mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-01 16:58:22 +00:00
ncurses: split long line of supported terminfo
The terminfo files were all in one row which is terrible to read. Split them over multiple lines to improve readability. Signed-off-by: Paul Spooren <mail@aparcar.org> Signed-off-by: maurerr <mariusd84@gmail.com>
This commit is contained in:
parent
e8aa5454a8
commit
7cde4f68ba
@ -120,7 +120,18 @@ ifneq ($(HOST_OS),FreeBSD)
|
|||||||
mv $$$$dir $$$$(echo -ne "\x$$$$dir"); \
|
mv $$$$dir $$$$(echo -ne "\x$$$$dir"); \
|
||||||
done \
|
done \
|
||||||
)
|
)
|
||||||
for file in a/ansi d/dumb l/linux r/rxvt r/rxvt-unicode s/screen v/vt100 v/vt102 x/xterm x/xterm-color x/xterm-256color; do \
|
for file in \
|
||||||
|
a/ansi \
|
||||||
|
d/dumb \
|
||||||
|
l/linux \
|
||||||
|
r/rxvt \
|
||||||
|
r/rxvt-unicode \
|
||||||
|
s/screen \
|
||||||
|
v/vt100 \
|
||||||
|
v/vt102 \
|
||||||
|
x/xterm \
|
||||||
|
x/xterm-color \
|
||||||
|
x/xterm-256color; do \
|
||||||
$(INSTALL_DIR) $(1)/usr/share/terminfo/`dirname $$$$file`; \
|
$(INSTALL_DIR) $(1)/usr/share/terminfo/`dirname $$$$file`; \
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/share/terminfo/$$$$file \
|
$(CP) $(PKG_INSTALL_DIR)/usr/share/terminfo/$$$$file \
|
||||||
$(1)/usr/share/terminfo/$$$$file; \
|
$(1)/usr/share/terminfo/$$$$file; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user