diff options
-rw-r--r-- | FAQ | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ Use the excellent tool of [utmp](http://git.suckless.org/utmp/) for this task. | |||
6 | 6 | ||
7 | It means that st doesn’t have any terminfo entry on your system. Chances are | 7 | It means that st doesn’t have any terminfo entry on your system. Chances are |
8 | you did not `make install`. If you just want to test it without installing it, | 8 | you did not `make install`. If you just want to test it without installing it, |
9 | you can manualy run `tic -s st.info`. | 9 | you can manualy run `tic -sx st.info`. |
10 | 10 | ||
11 | ## Nothing works, and nothing is said about an unknown terminal! | 11 | ## Nothing works, and nothing is said about an unknown terminal! |
12 | 12 | ||
@@ -49,7 +49,7 @@ install: all | |||
49 | @sed "s/VERSION/${VERSION}/g" < st.1 > ${DESTDIR}${MANPREFIX}/man1/st.1 | 49 | @sed "s/VERSION/${VERSION}/g" < st.1 > ${DESTDIR}${MANPREFIX}/man1/st.1 |
50 | @chmod 644 ${DESTDIR}${MANPREFIX}/man1/st.1 | 50 | @chmod 644 ${DESTDIR}${MANPREFIX}/man1/st.1 |
51 | @echo Please see the README file regarding the terminfo entry of st. | 51 | @echo Please see the README file regarding the terminfo entry of st. |
52 | @tic -s st.info | 52 | @tic -sx st.info |
53 | 53 | ||
54 | uninstall: | 54 | uninstall: |
55 | @echo removing executable file from ${DESTDIR}${PREFIX}/bin | 55 | @echo removing executable file from ${DESTDIR}${PREFIX}/bin |
@@ -24,7 +24,7 @@ Running st | |||
24 | If you did not install st with make clean install, you must compile | 24 | If you did not install st with make clean install, you must compile |
25 | the st terminfo entry with the following command: | 25 | the st terminfo entry with the following command: |
26 | 26 | ||
27 | tic -s st.info | 27 | tic -sx st.info |
28 | 28 | ||
29 | See the man page for additional details. | 29 | See the man page for additional details. |
30 | 30 | ||