mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
12e3c47e47
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
21 lines
512 B
Diff
21 lines
512 B
Diff
From: Markus Koschany <apo@debian.org>
|
|
Date: Fri, 19 Jan 2018 10:39:45 +0100
|
|
Subject: link against only needed libraries
|
|
|
|
---
|
|
src/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/Makefile b/src/Makefile
|
|
index c0b467b..aec5e4e 100644
|
|
--- a/src/Makefile
|
|
+++ b/src/Makefile
|
|
@@ -37,7 +37,7 @@ else
|
|
endif
|
|
|
|
CC = g++
|
|
-LFLAGS = `vdk-config-2 --libs` `pkg-config --libs gtk+-2.0`
|
|
+LFLAGS = -Wl,--as-needed `vdk-config-2 --libs` `pkg-config --libs gtk+-2.0`
|
|
|
|
|
|
####### Implicit rules
|