diff options
| author | Josef Schlehofer | 2025-12-31 01:21:38 +0000 |
|---|---|---|
| committer | Josef Schlehofer | 2026-01-01 14:27:12 +0000 |
| commit | d4f9e59a96969c5588fb7f31e4477480f761b763 (patch) | |
| tree | bf19fd7adfb413d763e73127d03041428f7737b7 | |
| parent | 2dedccd806acdd6bd714b562d668c8be7c0f08a6 (diff) | |
| download | packages-d4f9e59a96969c5588fb7f31e4477480f761b763.tar.gz | |
dovecot-pigeonhole: fix Makefile syntax to match dovecot
Use $(XARGS) variable instead of plain xargs command, consistent with
the dovecot package implementation. Remove unnecessary space in
EXTRA_DEPENDS version constraint.
Fixes failing error on buildbot:
```
make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
Makefile:62: *** multiple target patterns. Stop.
time: package/feeds/packages/pigeonhole/compile#0.52#0.42#1.15
```
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
| -rw-r--r-- | mail/pigeonhole/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/pigeonhole/Makefile b/mail/pigeonhole/Makefile index 5bb31444f9..f55cc8c346 100644 --- a/mail/pigeonhole/Makefile +++ b/mail/pigeonhole/Makefile @@ -11,7 +11,7 @@ PKG_NAME:=dovecot-pigeonhole PKG_VERSION_PLUGIN:=0.5.21 PKG_VERSION_DOVECOT:=$(shell make --no-print-directory -C ../dovecot/ val.PKG_VERSION V=s) PKG_VERSION:=$(PKG_VERSION_DOVECOT).$(PKG_VERSION_PLUGIN) -PKG_RELEASE:=1 +PKG_RELEASE:=2 DOVECOT_VERSION:=2.3 @@ -34,7 +34,7 @@ define Package/dovecot-pigeonhole SECTION:=mail CATEGORY:=Mail DEPENDS:=+dovecot - EXTRA_DEPENDS:=dovecot (>= $(PKG_VERSION_DOVECOT)) + EXTRA_DEPENDS:=dovecot (>=$(PKG_VERSION_DOVECOT)) TITLE:=Mail filtering facilities for Dovecot URL:=https://pigeonhole.dovecot.org/ endef @@ -56,7 +56,7 @@ define Package/dovecot-pigeonhole/install $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/dovecot/* $(1)/usr/lib/dovecot/ $(CP) $(PKG_INSTALL_DIR)/usr/libexec/dovecot/* $(1)/usr/libexec/dovecot/ - find $(1)/usr/lib/dovecot/ -name "*.a" -o -name "*.la" | xargs rm + find $(1)/usr/lib/dovecot/ -name "*.a" -o -name "*.la" | $(XARGS) rm endef $(eval $(call BuildPackage,dovecot-pigeonhole)) |