From: Christoph Brill Date: Fri, 12 Sep 2008 02:59:27 +0000 (-0400) Subject: Fix the build order of scripts/ and images/ X-Git-Tag: 0.6.0~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26b95a63de099c8e2e87317a1ae53251be640142;p=thirdparty%2Fplymouth.git Fix the build order of scripts/ and images/ The image needs to be installed before it can be processed with the script. --- 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 ])