summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-07-19 15:21:11 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2015-07-19 15:21:11 +0100
commita0ad0c682444aeb8e058f846fde121f061eb17b7 (patch)
tree3f2a5da657bfc633d010d64fad000140f29f18b3
parentd01aac9ac10d902a799aade8270093bcba3e3a88 (diff)
downloadlibnslayout-a0ad0c682444aeb8e058f846fde121f061eb17b7.tar.gz
libnslayout-a0ad0c682444aeb8e058f846fde121f061eb17b7.tar.bz2
Fix link order.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index beb2b46..0a84269 100644
--- a/Makefile
+++ b/Makefile
@@ -41,9 +41,9 @@ endif
ifneq ($(findstring clean,$(MAKECMDGOALS)),clean)
ifneq ($(PKGCONFIG),)
CFLAGS := $(CFLAGS) $(shell $(PKGCONFIG) \
- libwapcaplet libparserutils libcss libdom --cflags)
+ libcss libdom libwapcaplet libparserutils --cflags)
LDFLAGS := $(LDFLAGS) $(shell $(PKGCONFIG) \
- libwapcaplet libparserutils libcss libdom --libs)
+ libcss libdom libwapcaplet libparserutils --libs)
else
CFLAGS := $(CFLAGS) -I$(PREFIX)/include
LDFLAGS := $(LDFLAGS) -lparserutils -lwapcaplet -lcss -ldom