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 | 01210fe5748abbf7494d72ddff12942f09461ddf (patch) | |
tree | b98be5264f946205a2a7070f408c27063fde4e3d /pkg/rpm | |
parent | 9ed1a47feaddac7d593bc77a245d064c68775aad (diff) | |
download | unit-01210fe5748abbf7494d72ddff12942f09461ddf.tar.gz unit-01210fe5748abbf7494d72ddff12942f09461ddf.tar.bz2 |
Packages: removed unit-perl on CentOS 6.
CentOS 6 has Perl version 5.10, which is unsupported by Unit.
Diffstat (limited to '')
-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 ef7f3361..40b6016a 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 |