From 3668721d3af2648aaa4c443b9d7a5b0e4bdd200f Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 28 Jun 2017 14:39:20 +0200 Subject: [PATCH] Add dependency on apps/progs.h for test/uitest.o uitest.o depends on apps.h which depends on progs.h, which is dynamically generated, so we need to explicitely add a dependency between uitest.o and progs.h for the latter to be generated in time. Fixed #3793 Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3794) --- test/build.info | 1 + 1 file changed, 1 insertion(+) diff --git a/test/build.info b/test/build.info index f5d8d40885..f438270b86 100644 --- a/test/build.info +++ b/test/build.info @@ -336,6 +336,7 @@ INCLUDE_MAIN___test_libtestutil_OLB = /INCLUDE=MAIN ENDIF SOURCE[uitest]=uitest.c ../apps/apps.c ../apps/opt.c + DEPEND[uitest.o]=../apps/progs.h INCLUDE[uitest]=.. ../include ../apps DEPEND[uitest]=../libcrypto ../libssl libtestutil.a -- 2.25.1