From a7cd4e2ba89f617c0914fbc9118a7871d2f0c61d Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 13 Jun 2012 21:09:23 +0000 Subject: [PATCH] Remove debian from the build system, so automake works again. In r18399 the debian package info directory was removed, but references to to it in the build system were not, causing configure to fail to update the makefiles on fresh checkouts. svn path=/icecast/trunk/icecast/; revision=18400 --- Makefile.am | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2401dbd8..a56a125b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign dist-zip ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = src conf debian doc web admin win32 examples +SUBDIRS = src conf doc web admin win32 examples EXTRA_DIST = HACKING m4/acx_pthread.m4 m4/ogg.m4 \ m4/theora.m4 m4/vorbis.m4 m4/speex.m4 \ diff --git a/configure.in b/configure.in index 9033d0aa..b89697a8 100644 --- a/configure.in +++ b/configure.in @@ -150,7 +150,7 @@ AC_SUBST(ICECAST_OPTIONAL) AC_SUBST(HAVE_KATE) AC_SUBST(KATE_LIBS) -AC_OUTPUT([Makefile conf/Makefile debian/Makefile src/Makefile src/avl/Makefile +AC_OUTPUT([Makefile conf/Makefile src/Makefile src/avl/Makefile src/httpp/Makefile src/thread/Makefile src/log/Makefile src/net/Makefile src/timing/Makefile doc/Makefile web/Makefile admin/Makefile win32/Makefile win32/res/Makefile examples/Makefile])