Commit 7e3e8ec0 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

package/Makefile.in: CFLAGS/LDFLAGS: don't add -I / -L args for STAGING_DIR



Now that we use sysroot for all toolchains, the explicit -I / -L arguments
in CFLAGS / LDFLAGS aren't needed anymore (And having them makes the build
quite noisy for certain packages as STAGING_DIR/include normally doesn't
exist).

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 8b370e63
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -98,11 +98,6 @@ ifeq ($(BR2_LARGEFILE),y)
TARGET_CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
endif

ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include
endif

TARGET_LDFLAGS+=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib
TARGET_CXXFLAGS=$(TARGET_CFLAGS)
TARGET_SYSROOT_OPT=--sysroot=$(STAGING_DIR)