Remove references to things other than the vote stuff in configure scripts.

This commit is contained in:
Bradley M. Kuhn 2013-12-17 13:19:12 -05:00
parent a298ac56de
commit 9061eca876
3 changed files with 23 additions and 50 deletions

View file

@ -1,13 +1,3 @@
SUBDIRS = about contact img legal licensing membership news finance vote reports
urlpath =
page_SCRIPTS = \
index.html \
.htaccess
page_DATA = \
robots.txt \
foundation.css
SUBDIRS = vote
include $(top_srcdir)/rules.common

View file

@ -23,7 +23,7 @@ DIE=0
(automake --version) < /dev/null > /dev/null 2>&1 ||{
echo
echo "You must have at minimum automake version 1.4 installed"
echo "to compile foundation-web. Download the appropriate package"
echo "to compile vote. Download the appropriate package"
echo "for your distribution, or get the source tarball at"
echo "ftp://ftp.cygnus.com/pub/home/tromey/automake-1.4.tar.gz"
DIE=1
@ -34,8 +34,8 @@ if test "$DIE" -eq 1; then
exit 1
fi
(test -d foundation.gnome.org) || {
echo "You must run this script in the top-level foundation-web directory"
(test -d vote) || {
echo "You must run this script in the top-level vote system directory"
exit 1
}
@ -54,4 +54,4 @@ echo "Running $srcdir/configure --enable-maintainer-mode" "$@"
$srcdir/configure --enable-maintainer-mode "$@" || exit $?
echo
echo "Now type 'make' to compile foundation-web."
echo "Now type 'make' to compile vote."

View file

@ -13,39 +13,22 @@ AC_SUBST(HTTP_PREFIX)
AC_OUTPUT([
Makefile
foundation.gnome.org/Makefile
foundation.gnome.org/about/Makefile
foundation.gnome.org/about/advisoryboard/Makefile
foundation.gnome.org/about/history/Makefile
foundation.gnome.org/about/charter/Makefile
foundation.gnome.org/contact/Makefile
foundation.gnome.org/img/Makefile
foundation.gnome.org/img/logos/Makefile
foundation.gnome.org/img/reports/Makefile
foundation.gnome.org/legal/Makefile
foundation.gnome.org/licensing/Makefile
foundation.gnome.org/licensing/guidelines/Makefile
foundation.gnome.org/licensing/usergroup/Makefile
foundation.gnome.org/finance/Makefile
foundation.gnome.org/membership/Makefile
foundation.gnome.org/news/Makefile
foundation.gnome.org/reports/Makefile
foundation.gnome.org/vote/Makefile
foundation.gnome.org/vote/include/Makefile
foundation.gnome.org/vote/2000/Makefile
foundation.gnome.org/vote/2001/Makefile
foundation.gnome.org/vote/2002/Makefile
foundation.gnome.org/vote/2003/Makefile
foundation.gnome.org/vote/2004/Makefile
foundation.gnome.org/vote/2004-10/Makefile
foundation.gnome.org/vote/2005/Makefile
foundation.gnome.org/vote/2005-10/Makefile
foundation.gnome.org/vote/2006/Makefile
foundation.gnome.org/vote/2007/Makefile
foundation.gnome.org/vote/2007-10/Makefile
foundation.gnome.org/vote/2009/Makefile
foundation.gnome.org/vote/2010/Makefile
foundation.gnome.org/vote/2011/Makefile
foundation.gnome.org/vote/2012/Makefile
foundation.gnome.org/vote/2013/Makefile
vote/Makefile
vote/include/Makefile
vote/2000/Makefile
vote/2001/Makefile
vote/2002/Makefile
vote/2003/Makefile
vote/2004/Makefile
vote/2004-10/Makefile
vote/2005/Makefile
vote/2005-10/Makefile
vote/2006/Makefile
vote/2007/Makefile
vote/2007-10/Makefile
vote/2009/Makefile
vote/2010/Makefile
vote/2011/Makefile
vote/2012/Makefile
vote/2013/Makefile
])