From 26b95a63de099c8e2e87317a1ae53251be640142 Mon Sep 17 00:00:00 2001 From: Christoph Brill Date: Thu, 11 Sep 2008 22:59:27 -0400 Subject: [PATCH] Fix the build order of scripts/ and images/ The image needs to be installed before it can be processed with the script. --- Makefile.am | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index a01eaeeb..0fa9670d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = src scripts images +SUBDIRS = src images scripts DISTCHECK_CONFIGURE_FLAGS = --without-boot-entry --disable-tests EXTRA_DIST = ChangeLog \ diff --git a/configure.ac b/configure.ac index 45a3d953..455e6a2c 100644 --- a/configure.ac +++ b/configure.ac @@ -108,6 +108,6 @@ AC_OUTPUT([Makefile src/tests/Makefile src/libply/tests/Makefile src/client/tests/Makefile - scripts/Makefile images/Makefile + scripts/Makefile ]) -- 2.47.3