1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
From: Ilias Tsitsimpis <iliastsi@debian.org>
Date: Mon, 2 Jan 2023 12:17:02 +0200
Subject: Do not install the xembed executable
Do not install the xembed executable, since the executable name is too
generic. If we want to keep this binary, we should consider renaming it.
---
tabbed/Makefile | 4 ++--
tabbed/tabbed.1 | 1 -
2 files changed, 2 insertions(+), 3 deletions(-)
--- a/tabbed/Makefile
+++ b/tabbed/Makefile
@@ -17,9 +17,9 @@ CPPFLAGS += -DVERSION=\"${VERSION}\" -D_
#TABBED_CFLAGS = -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 ${CFLAGS}
SRC = tabbed.c xembed.c
-OBJ = tabbed.default.o tabbed.meta.o xembed.o
+OBJ = tabbed.default.o tabbed.meta.o
BIN = ${OBJ:.o=}
-MAN1 = ${BIN:=.1}
+MAN1 = tabbed.1
HDR = arg.h config.def.h
DOC = LICENSE README
--- a/tabbed/tabbed.1
+++ b/tabbed/tabbed.1
@@ -171,6 +171,5 @@ See the LICENSE file for the authors.
See the LICENSE file for the terms of redistribution.
.SH SEE ALSO
.BR st (1),
-.BR xembed (1)
.SH BUGS
Please report them.
|