author | kergoth <kergoth> | 2002-11-05 04:50:53 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-05 04:50:53 (UTC) |
commit | a7741f90c43f13371cd02bb4dd7e0c05208c04d5 (patch) (unidiff) | |
tree | a075f8421795ee1f31546b8327ee7f5e27d5ce77 | |
parent | b56df274777f7f72c9ad297ce60a908a11e6d4cb (diff) | |
download | opie-a7741f90c43f13371cd02bb4dd7e0c05208c04d5.zip opie-a7741f90c43f13371cd02bb4dd7e0c05208c04d5.tar.gz opie-a7741f90c43f13371cd02bb4dd7e0c05208c04d5.tar.bz2 |
Reverse configs sort order to ensure all is well
-rw-r--r-- | Makefile.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.test b/Makefile.test index ef99465..7e0d944 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -1,27 +1,28 @@ | |||
1 | #!/usr/bin/make -f | 1 | #!/usr/bin/make -f |
2 | export QMAKESPECSDIR=$(OPIEDIR)/mkspecs | 2 | export QMAKESPECSDIR=$(OPIEDIR)/mkspecs |
3 | export QMAKESPEC=$(QMAKESPECSDIR)/qws/linux-generic-g++ | 3 | export QMAKESPEC=$(QMAKESPECSDIR)/qws/linux-generic-g++ |
4 | 4 | ||
5 | # The following are config.in's which are generated, to avoid numerous manual edits when | 5 | # The following are config.in's which are generated, to avoid numerous manual edits when |
6 | # adding packages to the build. | 6 | # adding packages to the build. |
7 | 7 | ||
8 | configs += $(TOPDIR)/config.in $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/applets/restartapplet2/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/development/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/apps/opie-console/test/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/todayplugins/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/unsupported/config.in $(TOPDIR)/noncore/unsupported/opiemail/ifaces/config.in $(TOPDIR)/x11/config.in $(TOPDIR)/x11/ipc/config.in $(TOPDIR)/x11/ipc/server/config.in | 8 | configs += $(TOPDIR)/x11/ipc/server/config.in $(TOPDIR)/x11/ipc/config.in $(TOPDIR)/x11/config.in $(TOPDIR)/noncore/unsupported/opiemail/ifaces/config.in $(TOPDIR)/noncore/unsupported/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/todayplugins/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/development/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/applets/restartapplet2/config.in $(TOPDIR)/core/applets/config.in $(TOPDIR)/config.in |
9 | 9 | ||
10 | export OPIEDIR:=$(shell pwd) | 10 | export OPIEDIR:=$(shell pwd) |
11 | export TOPDIR:=$(OPIEDIR) | 11 | export TOPDIR:=$(OPIEDIR) |
12 | 12 | ||
13 | all : configs | 13 | all : configs |
14 | 14 | ||
15 | configs : $(configs) | 15 | configs : $(configs) |
16 | 16 | ||
17 | clean-configs : | 17 | clean-configs : |
18 | @echo "Wiping generated config.in files..." | 18 | @echo "Wiping generated config.in files..." |
19 | @-rm -f $(configs) | 19 | @-rm -f $(configs) |
20 | 20 | ||
21 | -include $(TOPDIR)/.config | 21 | -include $(TOPDIR)/.config |
22 | -include $(TOPDIR)/..config.cmd | ||
22 | -include $(TOPDIR)/.depends | 23 | -include $(TOPDIR)/.depends |
23 | 24 | ||
24 | all : $(TOPDIR)/.depends $(subdir-y) | 25 | all : $(TOPDIR)/.depends $(subdir-y) |
25 | 26 | ||
26 | include $(TOPDIR)/Rules.make | 27 | include $(TOPDIR)/Rules.make |
27 | 28 | ||