Commit 1e97cfad authored by nanahira's avatar nanahira

dont avoid run checks

parent 155e8aca
Pipeline #15040 failed with stages
in 12 minutes and 43 seconds
......@@ -356,7 +356,7 @@ $(1).%.build: $(1).stamp
PKG_CONFIG_PATH=$$(PWD)/arch/lib/pkgconfig \
)
$$(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
touch $$@
......@@ -385,8 +385,8 @@ aria2.%.build: zlib.%.build expat.%.build gmp.%.build cares.%.build sqlite.%.bui
PKG_CONFIG_PATH=$(PWD)/arch/lib/pkgconfig \
)
$(MAKE) -C $(DEST) -sj$(CPUS)
# $(MAKE) -C $(DEST) -sj$(CPUS) check
# Check that the resulting executable is Position-independent (PIE)
$(MAKE) -C $(DEST) -sj$(CPUS) check
Check that the resulting executable is Position-independent (PIE)
otool -hv $(DEST)/src/aria2c | grep -q PIE
$(MAKE) -C $(DEST) -sj$(CPUS) install-strip
touch $@
......
......@@ -314,7 +314,7 @@ zlib.%.build: zlib.stamp
--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)" check
$(MAKE) -C $(DEST) -sj$(CPUS) CFLAGS="$(CFLAGS) $(LTO_FLAGS) -arch $(ARCH)" check
$(MAKE) -C $(DEST) -s install
touch $@
......@@ -336,7 +336,7 @@ $(1).%.build: $(1).stamp
PKG_CONFIG_PATH=$$(PWD)/arch/lib/pkgconfig \
)
$$(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
touch $$@
......@@ -365,7 +365,7 @@ aria2.%.build: zlib.%.build expat.%.build gmp.%.build cares.%.build sqlite.%.bui
PKG_CONFIG_PATH=$(PWD)/arch/lib/pkgconfig \
)
$(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)
otool -hv $(DEST)/src/aria2c | grep -q PIE
$(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