diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-01-04 12:16:18 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-01-04 12:16:18 +0000 |
commit | e08e53c9398700309000c6e6b7ff895185d567a9 (patch) | |
tree | 0f9b545f37fed519fcd82748de1b6f602814ae36 /protocols | |
parent | a19ea7a21e082d0e28aea7198bea0f3bd3e2eb4f (diff) |
Fixed build system: Run pkg-config at configure-time instead of just failing
mysteriously at build time if libpurple-dev is missing.
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/purple/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/purple/Makefile b/protocols/purple/Makefile index bdefbd5f..15460529 100644 --- a/protocols/purple/Makefile +++ b/protocols/purple/Makefile @@ -11,7 +11,7 @@ # [SH] Program variables objects = purple.o -CFLAGS += -Wall $$(pkg-config purple --cflags) +CFLAGS += -Wall $(PURPLE_CFLAGS) LFLAGS += -r # [SH] Phony targets |