File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ $(obj)/vdso.o: $(obj)/vdso.so
45
45
46
46
# link rule for the .so file, .lds has to be first
47
47
$(obj ) /vdso.so.dbg : $(obj ) /vdso.lds $(obj-vdso ) FORCE
48
- $(call if_changed,vdsold )
48
+ $(call if_changed,vdsold_and_check )
49
49
LDFLAGS_vdso.so.dbg = -shared -soname=linux-vdso.so.1 \
50
50
--build-id=sha1 --hash-style=both --eh-frame-hdr
51
51
@@ -65,7 +65,8 @@ include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
65
65
# actual build commands
66
66
# The DSO images are built using a special linker script
67
67
# Make sure only to export the intended __vdso_xxx symbol offsets.
68
- quiet_cmd_vdsold = VDSOLD $@
69
- cmd_vdsold = $(LD ) $(ld_flags ) -T $(filter-out FORCE,$^ ) -o $@ .tmp && \
68
+ quiet_cmd_vdsold_and_check = VDSOLD $@
69
+ cmd_vdsold_and_check = $(LD ) $(ld_flags ) -T $(filter-out FORCE,$^ ) -o $@ .tmp && \
70
70
$(OBJCOPY ) $(patsubst % , -G __vdso_% , $(vdso-syms ) ) $@ .tmp $@ && \
71
- rm $@ .tmp
71
+ rm $@ .tmp && \
72
+ $(cmd_vdso_check )
You can’t perform that action at this time.
0 commit comments