diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-13 05:23:02 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-13 05:23:02 +0800 |
commit | a4be8f60fb4b7a8089d6a5c188748fa5544d6615 (patch) | |
tree | cf96d65a43d7ad707ad5dbeb19c8d52ff10abbe6 | |
parent | 4e5594955f8a2b35741855526b3190301f795911 (diff) | |
download | gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.tar gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.tar.gz gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.tar.bz2 gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.tar.lz gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.tar.xz gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.tar.zst gsoc2013-evolution-a4be8f60fb4b7a8089d6a5c188748fa5544d6615.zip |
Fix the configure script to output the Makefile in `src' before the
Makefiles in the subdirs.
svn path=/trunk/; revision=5392
-rw-r--r-- | libical/ChangeLog | 5 | ||||
-rw-r--r-- | libical/configure.in | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libical/ChangeLog b/libical/ChangeLog index 45d222ada8..46b70066b0 100644 --- a/libical/ChangeLog +++ b/libical/ChangeLog @@ -1,3 +1,8 @@ +2000-09-12 Ettore Perazzoli <ettore@helixcode.com> + + * configure.in: AC_OUTPUT the Makefile in `src' before the stuff + in its subdirs. + 2000-09-12 JP Rosevear <jpr@helixcode.com> * test-data/stresstest.ics: Merge missing file for distcheck diff --git a/libical/configure.in b/libical/configure.in index e60c896aab..0c91500602 100644 --- a/libical/configure.in +++ b/libical/configure.in @@ -37,16 +37,15 @@ dnl Checks for library functions. AC_CHECK_FUNCS(strdup) AC_OUTPUT(\ +src/Makefile \ src/libical/icalversion.h \ src/libical/Makefile \ src/libicalss/Makefile \ src/libicalvcal/Makefile \ src/test/Makefile \ examples/Makefile \ -src/Makefile \ design-data/Makefile \ doc/Makefile \ scripts/Makefile \ test-data/Makefile \ -src/Makefile \ Makefile ) |