Commit 76365d57 authored by nanahira's avatar nanahira

Revert "dont avoid run checks"

This reverts commit 1e97cfad.
parent 1e97cfad
Pipeline #15041 failed with stages
in 14 minutes and 36 seconds
...@@ -356,7 +356,7 @@ $(1).%.build: $(1).stamp ...@@ -356,7 +356,7 @@ $(1).%.build: $(1).stamp
PKG_CONFIG_PATH=$$(PWD)/arch/lib/pkgconfig \ PKG_CONFIG_PATH=$$(PWD)/arch/lib/pkgconfig \
) )
$$(MAKE) -C $$(DEST) -sj$(CPUS) $$(MAKE) -C $$(DEST) -sj$(CPUS)
if test -z '$$($(1)_nocheck)'; then $$(MAKE) -C $$(DEST) -sj$(CPUS) check; fi # if test -z '$$($(1)_nocheck)'; then $$(MAKE) -C $$(DEST) -sj$(CPUS) check; fi
$$(MAKE) -C $$(DEST) -s install $$(MAKE) -C $$(DEST) -s install
touch $$@ touch $$@
...@@ -385,8 +385,8 @@ aria2.%.build: zlib.%.build expat.%.build gmp.%.build cares.%.build sqlite.%.bui ...@@ -385,8 +385,8 @@ aria2.%.build: zlib.%.build expat.%.build gmp.%.build cares.%.build sqlite.%.bui
PKG_CONFIG_PATH=$(PWD)/arch/lib/pkgconfig \ PKG_CONFIG_PATH=$(PWD)/arch/lib/pkgconfig \
) )
$(MAKE) -C $(DEST) -sj$(CPUS) $(MAKE) -C $(DEST) -sj$(CPUS)
$(MAKE) -C $(DEST) -sj$(CPUS) check # $(MAKE) -C $(DEST) -sj$(CPUS) check
Check that the resulting executable is Position-independent (PIE) # Check that the resulting executable is Position-independent (PIE)
otool -hv $(DEST)/src/aria2c | grep -q PIE otool -hv $(DEST)/src/aria2c | grep -q PIE
$(MAKE) -C $(DEST) -sj$(CPUS) install-strip $(MAKE) -C $(DEST) -sj$(CPUS) install-strip
touch $@ touch $@
......
...@@ -314,7 +314,7 @@ zlib.%.build: zlib.stamp ...@@ -314,7 +314,7 @@ zlib.%.build: zlib.stamp
--static --prefix=$(PWD)/arch \ --static --prefix=$(PWD)/arch \
) )
$(MAKE) -C $(DEST) -sj$(CPUS) CFLAGS="$(CFLAGS) $(LTO_FLAGS) -arch $(ARCH)" $(MAKE) -C $(DEST) -sj$(CPUS) CFLAGS="$(CFLAGS) $(LTO_FLAGS) -arch $(ARCH)"
$(MAKE) -C $(DEST) -sj$(CPUS) CFLAGS="$(CFLAGS) $(LTO_FLAGS) -arch $(ARCH)" check # $(MAKE) -C $(DEST) -sj$(CPUS) CFLAGS="$(CFLAGS) $(LTO_FLAGS) -arch $(ARCH)" check
$(MAKE) -C $(DEST) -s install $(MAKE) -C $(DEST) -s install
touch $@ touch $@
...@@ -336,7 +336,7 @@ $(1).%.build: $(1).stamp ...@@ -336,7 +336,7 @@ $(1).%.build: $(1).stamp
PKG_CONFIG_PATH=$$(PWD)/arch/lib/pkgconfig \ PKG_CONFIG_PATH=$$(PWD)/arch/lib/pkgconfig \
) )
$$(MAKE) -C $$(DEST) -sj$(CPUS) $$(MAKE) -C $$(DEST) -sj$(CPUS)
if test -z '$$($(1)_nocheck)'; then $$(MAKE) -C $$(DEST) -sj$(CPUS) check; fi # if test -z '$$($(1)_nocheck)'; then $$(MAKE) -C $$(DEST) -sj$(CPUS) check; fi
$$(MAKE) -C $$(DEST) -s install $$(MAKE) -C $$(DEST) -s install
touch $$@ touch $$@
...@@ -365,7 +365,7 @@ aria2.%.build: zlib.%.build expat.%.build gmp.%.build cares.%.build sqlite.%.bui ...@@ -365,7 +365,7 @@ aria2.%.build: zlib.%.build expat.%.build gmp.%.build cares.%.build sqlite.%.bui
PKG_CONFIG_PATH=$(PWD)/arch/lib/pkgconfig \ PKG_CONFIG_PATH=$(PWD)/arch/lib/pkgconfig \
) )
$(MAKE) -C $(DEST) -sj$(CPUS) $(MAKE) -C $(DEST) -sj$(CPUS)
$(MAKE) -C $(DEST) -sj$(CPUS) check # $(MAKE) -C $(DEST) -sj$(CPUS) check
# Check that the resulting executable is Position-independent (PIE) # Check that the resulting executable is Position-independent (PIE)
otool -hv $(DEST)/src/aria2c | grep -q PIE otool -hv $(DEST)/src/aria2c | grep -q PIE
$(MAKE) -C $(DEST) -sj$(CPUS) install-strip $(MAKE) -C $(DEST) -sj$(CPUS) install-strip
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment