forked from pool/haproxy
0b429848d7
Update to 1.4.25. Amended SR with missing patch information in .changes OBS-URL: https://build.opensuse.org/request/show/232846 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/haproxy?expand=0&rev=4
26 lines
722 B
Diff
26 lines
722 B
Diff
From 9f7b45fa88460a20da5d6c907694f2d07eb1a90c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= <krig@koru.se>
|
|
Date: Tue, 6 May 2014 08:44:24 +0200
|
|
Subject: [PATCH 10/15] openSUSE: Fix path to PCRE library
|
|
|
|
---
|
|
Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 658716a60a80..99516a819e28 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -460,7 +460,7 @@ ifneq ($(USE_PCRE)$(USE_STATIC_PCRE),)
|
|
PCREDIR := $(shell pcre-config --prefix 2>/dev/null || echo /usr/local)
|
|
ifneq ($(PCREDIR),)
|
|
PCRE_INC := $(PCREDIR)/include
|
|
-PCRE_LIB := $(PCREDIR)/lib
|
|
+PCRE_LIB := $(PCREDIR)/$(LIB)
|
|
endif
|
|
|
|
ifeq ($(USE_STATIC_PCRE),)
|
|
--
|
|
1.8.4.5
|
|
|