aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/drop-extra-deps.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/drop-extra-deps.patch')
-rw-r--r--debian/patches/drop-extra-deps.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/debian/patches/drop-extra-deps.patch b/debian/patches/drop-extra-deps.patch
deleted file mode 100644
index 4c3957e..0000000
--- a/debian/patches/drop-extra-deps.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Description: use --as-needed linker flag to avoid unnecessary dependencies
-Author: Dmitry Borisyuk <q1werty@i.com.ua>
---- a/Makefile
-+++ b/Makefile
-@@ -30,7 +30,7 @@
-
- TARGET = fbxkb
- $(TARGET): $(OBJ)
-- $(CC) $(LDFLAGS) $(LIBS) $(OBJ) -o $@
-+ $(CC) $(LDFLAGS) $(OBJ) -Wl,--as-needed $(LIBS) -o $@
-
- all: $(TARGET)
-
bgstack15