diff options
author | Andrei Belov <defan@nginx.com> | 2019-02-14 17:21:36 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2019-02-14 17:21:36 +0300 |
commit | 43ad6be2f04d4212bd97ffc9d8a2fe833d8f218c (patch) | |
tree | 1cfb619250431087995a3fec342ac932b992301b /pkg | |
parent | ab40732c0886b979090da6245cc1a7f0ba52de49 (diff) | |
download | unit-43ad6be2f04d4212bd97ffc9d8a2fe833d8f218c.tar.gz unit-43ad6be2f04d4212bd97ffc9d8a2fe833d8f218c.tar.bz2 |
Packages: removed unit-perl on CentOS 6.
CentOS 6 has Perl version 5.10, which is unsupported by Unit.
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/rpm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pkg/rpm/Makefile b/pkg/rpm/Makefile index d817b434..fdc31302 100644 --- a/pkg/rpm/Makefile +++ b/pkg/rpm/Makefile @@ -46,7 +46,13 @@ BUILD_DEPENDS = $(BUILD_DEPENDS_unit) MODULES= -ifneq (,$(findstring $(OSVER),centos6 centos7 amazonlinux2)) +ifeq ($(OSVER), centos6) +include Makefile.php +include Makefile.python +include Makefile.go +endif + +ifneq (,$(findstring $(OSVER),centos7 amazonlinux2)) include Makefile.php include Makefile.python include Makefile.go |