]> git.sur5r.net Git - i3/i3/commitdiff
remove hard-coded paths since we now use pkg-config for all the dependencies
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 18 Mar 2011 17:11:02 +0000 (18:11 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 18 Mar 2011 17:11:02 +0000 (18:11 +0100)
common.mk

index 445ba44e3137eaa2e3c536f688e54b687f297d80..182c12e52041eba88947adad6d7d6182e7171979 100644 (file)
--- a/common.mk
+++ b/common.mk
@@ -27,7 +27,6 @@ CFLAGS += -Wall
 # We don’t want unused-parameter because of the use of many callbacks
 CFLAGS += -Wunused-value
 CFLAGS += -Iinclude
-CFLAGS += -I/usr/local/include
 CFLAGS += $(call cflags_for_lib, xcb-keysyms)
 ifeq ($(shell pkg-config --exists xcb-util || echo 1),1)
 CFLAGS += -DXCB_COMPAT
@@ -64,7 +63,6 @@ LDFLAGS += $(call ldflags_for_lib, xcursor, Xcursor)
 LDFLAGS += $(call ldflags_for_lib, x11, X11)
 LDFLAGS += $(call ldflags_for_lib, yajl, yajl)
 LDFLAGS += $(call ldflags_for_lib, libev, ev)
-LDFLAGS += -L/usr/local/lib -L/usr/pkg/lib
 
 ifeq ($(UNAME),NetBSD)
 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv