diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2013-01-22 19:27:42 +0200 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2013-01-22 19:27:42 +0200 |
commit | 5ac7d58039c723ed505d4d9a2b77020f9bd2b8b2 (patch) | |
tree | e9633fe3c26e0ff0ed699d1a7af2e6d473b3b3ad /Makefile | |
parent | 2b099cc01701e784fa5b1c53f38fd592b0b3ae42 (diff) | |
download | vdr-plugin-epgfixer-5ac7d58039c723ed505d4d9a2b77020f9bd2b8b2.tar.gz vdr-plugin-epgfixer-5ac7d58039c723ed505d4d9a2b77020f9bd2b8b2.tar.bz2 |
Report an error if PCRE library is not available.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -29,6 +29,8 @@ TMPDIR ?= /tmp ### Regexp ifeq (exists, $(shell pkg-config libpcre && echo exists)) REGEXLIB = pcre +else +$(error PCRE library required) endif ### Make sure that necessary options are included: |