diff options
author | Robert Nagy <robert@openbsd.org> | 2011-04-03 22:10:37 +0200 |
---|---|---|
committer | Robert Nagy <robert@openbsd.org> | 2011-04-03 22:15:57 +0200 |
commit | 9294d02f03bb81aa370adfba53e28eacc0cb529f (patch) | |
tree | a44e80643303a8cd08715233e990d888a32b39ed /RepositoryFixes.mk | |
parent | af544c8f8465654c8611ba07af5985e65270f081 (diff) |
filter some library names on *BSD too just like on LINUX
Diffstat (limited to 'RepositoryFixes.mk')
-rw-r--r-- | RepositoryFixes.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk index 877419bbdd43..15a0f878f8b4 100644 --- a/RepositoryFixes.mk +++ b/RepositoryFixes.mk @@ -30,7 +30,7 @@ # Make has no support for 'or' clauses in conditionals, # we use a filter expression instead. -ifneq (,$(filter LINUX DRAGONFLY, $(OS))) +ifneq (,$(filter LINUX DRAGONFLY OPENBSD FREEBSD NETBSD, $(OS))) gb_Library_FILENAMES := $(patsubst comphelper:libcomphelper%,comphelper:libcomphelp%,$(gb_Library_FILENAMES)) gb_Library_FILENAMES := $(patsubst cppuhelper:libcppuhelper%,cppuhelper:libuno_cppuhelper%,$(gb_Library_FILENAMES)) gb_Library_FILENAMES := $(patsubst cppuhelper:libcppuhelper%,cppuhelper:libuno_cppuhelper%,$(gb_Library_FILENAMES)) |