mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-17 16:47:50 +00:00
crit: drop python 2 support
This patch reverts changes introduced with the following commits:4feb07020dcrit: enable python2 or python3 based critb78c4e071atest: fix crit test and extend it Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
parent
7825f4ebfa
commit
f5d06571c5
8 changed files with 8 additions and 44 deletions
16
Makefile
16
Makefile
|
|
@ -156,7 +156,7 @@ HOSTCFLAGS += $(WARNINGS) $(DEFINES) -iquote include/
|
|||
export AFLAGS CFLAGS USERCLFAGS HOSTCFLAGS
|
||||
|
||||
# Default target
|
||||
all: criu lib crit
|
||||
all: criu lib
|
||||
.PHONY: all
|
||||
|
||||
#
|
||||
|
|
@ -259,26 +259,19 @@ criu: $(criu-deps)
|
|||
$(Q) $(MAKE) $(build)=criu all
|
||||
.PHONY: criu
|
||||
|
||||
crit/Makefile: ;
|
||||
crit/%: criu .FORCE
|
||||
$(Q) $(MAKE) $(build)=crit $@
|
||||
crit: criu
|
||||
$(Q) $(MAKE) $(build)=crit all
|
||||
.PHONY: crit
|
||||
|
||||
unittest: $(criu-deps)
|
||||
$(Q) $(MAKE) $(build)=criu unittest
|
||||
.PHONY: unittest
|
||||
|
||||
|
||||
#
|
||||
# Libraries next once crit it ready
|
||||
# Libraries next once criu is ready
|
||||
# (we might generate headers and such
|
||||
# when building criu itself).
|
||||
lib/Makefile: ;
|
||||
lib/%: crit .FORCE
|
||||
lib/%: criu .FORCE
|
||||
$(Q) $(MAKE) $(build)=lib $@
|
||||
lib: crit
|
||||
lib: criu
|
||||
$(Q) $(MAKE) $(build)=lib all
|
||||
.PHONY: lib
|
||||
|
||||
|
|
@ -290,7 +283,6 @@ clean mrproper:
|
|||
$(Q) $(MAKE) $(build)=compel $@
|
||||
$(Q) $(MAKE) $(build)=compel/plugins $@
|
||||
$(Q) $(MAKE) $(build)=lib $@
|
||||
$(Q) $(MAKE) $(build)=crit $@
|
||||
.PHONY: clean mrproper
|
||||
|
||||
clean-amdgpu_plugin:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue