mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Building zipl from outside the zipl/ sub-directory fails due to a missing dependency: # cd s390-tools # make -C zipl/src/ zipl boot.c:18:10: fatal error: ../boot/data.h: No such file or directory #include "../boot/data.h" This is because boot/data.h needs to be generated before src/boot.c can be compiled. Fix this by adding the missing dependency to the zipl Makefile. Signed-off-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>