Skip to content

Commit

Permalink
BuildSettings: Fix pcre check
Browse files Browse the repository at this point in the history
  • Loading branch information
weinhold committed Dec 10, 2013
1 parent 8244984 commit 2d4f86e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/BuildSettings
Expand Up @@ -43,7 +43,12 @@ if $(OS) = HAIKU {
}

# check for pcre...
local haveHeadersPcre = [ GLOB /boot/common/develop/headers : pcre.h ] ;
local haveHeadersPcre = [
GLOB /boot/system/non-packaged/develop/headers
/boot/system/develop/headers
/boot/home/config/non-packaged/develop/headers
/boot/home/config/develop/headers
: pcre.h ] ;
if ! $(haveHeadersPcre) {
Exit "You need to have pcre installed on your system." ;
}
Expand Down

0 comments on commit 2d4f86e

Please sign in to comment.