diff options
author | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-04-11 22:00:03 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 22:00:03 -0300 |
commit | 2c8eb03c83da378228e7d34d7acdbb6c7d0623c6 (patch) | |
tree | 34592a76655c2c664a264e54e403b85af1777d41 | |
parent | 61b2a35a35cd3994bb10a094d66f2007d04fff48 (diff) | |
parent | 013b1895ed78c9eeef020bdb53bf2784b8a7374d (diff) |
Merge pull request #15400 from cotequeiroz/circular_deps
libseccomp,crun: Fix circular deps
-rw-r--r-- | libs/libseccomp/Makefile | 1 | ||||
-rw-r--r-- | utils/crun/Makefile | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/libs/libseccomp/Makefile b/libs/libseccomp/Makefile index 355841df4..e82ec751b 100644 --- a/libs/libseccomp/Makefile +++ b/libs/libseccomp/Makefile @@ -56,7 +56,6 @@ endef define Package/libseccomp $(call Package/libseccomp/Default) TITLE+= (library) - DEPENDS+= @!arc endef define Package/scmp_sys_resolver diff --git a/utils/crun/Makefile b/utils/crun/Makefile index 4a6b75854..5ba58ec22 100644 --- a/utils/crun/Makefile +++ b/utils/crun/Makefile @@ -26,7 +26,7 @@ define Package/crun CATEGORY:=Utilities TITLE:=crun URL:=https://github.com/containers/crun - DEPENDS:=+libseccomp +libcap + DEPENDS:=@!arc +libseccomp +libcap endef define Package/crun/description |