Hi,

I've just installed dvtm on Ubuntu Server and it looks like the
terminfo entry gets installed into the wrong place
(/usr/share/terminfo/, while the system looks for it in
/etc/terminfo/). So I just removed the -o flag from @tic which allow
the system to place the files to the right directory. Indeed, now
things works properly.

Attached is the patch.


Regards,
Claudio
diff --git a/Makefile b/Makefile
index 207fc6b..4c304bd 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ install: dvtm
 	@sed "s/VERSION/${VERSION}/g" < dvtm.1 > ${DESTDIR}${MANPREFIX}/man1/dvtm.1
 	@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dvtm.1
 	@echo installing terminfo description
-	@tic -o ${DESTDIR}${PREFIX}/share/terminfo -s dvtm.info
+	@tic -s dvtm.info
 
 uninstall:
 	@echo removing executable file from ${DESTDIR}${PREFIX}/bin

Reply via email to