]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Fix the build order of scripts/ and images/
authorChristoph Brill <egore911@egore911.de>
Fri, 12 Sep 2008 02:59:27 +0000 (22:59 -0400)
committerRay Strode <rstrode@redhat.com>
Fri, 12 Sep 2008 02:59:27 +0000 (22:59 -0400)
The image needs to be installed before it can be
processed with the script.

Makefile.am
configure.ac

index a01eaeeb5066947d1b0cd43f7377cf2eba2bf823..0fa9670df2fd2e9d9974db000f7c57cfbeaad28a 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = src scripts images
+SUBDIRS = src images scripts
 DISTCHECK_CONFIGURE_FLAGS = --without-boot-entry --disable-tests
 
 EXTRA_DIST = ChangeLog                                                         \
index 45a3d9535f62b9c6549260bfc1df85de29968fe5..455e6a2ca805df3a180dd8ee9be0e32f393034ac 100644 (file)
@@ -108,6 +108,6 @@ AC_OUTPUT([Makefile
            src/tests/Makefile
            src/libply/tests/Makefile
            src/client/tests/Makefile
-           scripts/Makefile
            images/Makefile
+           scripts/Makefile
 ])