summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrcyeske <rcyeske>2001-02-19 20:51:40 +0000
committerrcyeske <rcyeske>2001-02-19 20:51:40 +0000
commitca1359e0e9ca080b7ad7807435a2397bf25bc3a7 (patch)
treea45d91d06acebca14a6e91a2f9f5319ce9f689e9
parent784420539fcae2753b9bfb7602dcd6d894c508e6 (diff)
downloadratpoison-ca1359e0e9ca080b7ad7807435a2397bf25bc3a7.zip
trivial changes
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.am4
-rwxr-xr-xautogen.sh5
-rw-r--r--configure.in4
4 files changed, 11 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e83159..d68d795 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,12 @@
* NEWS: mention that ALL of the fixed size buffers are fixed.
+2001-02-17 Ryan Yeske <rcyeske@cut.hotdog.tmp>
+
+ * Makefile.am (SUBDIRS): Source dir before documentation dirs.
+
+ * autogen.sh: Do not continue if a step fails.
+
2001-02-17 Gergely Nagy <8@free.bsd.hu>
* man/ratpoison.1,
diff --git a/Makefile.am b/Makefile.am
index 01bd892..f201d77 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -17,7 +17,7 @@
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
-## $Id: Makefile.am,v 1.3 2001/02/18 22:49:09 sabetts Exp $
+## $Id: Makefile.am,v 1.4 2001/02/19 20:51:40 rcyeske Exp $
PACKAGE = @PACKAGE@
VERSION = @VERSION@
@@ -27,7 +27,7 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 \
config.guess config.h.in config.sub configure \
install-sh missing mkinstalldirs stamp-h.in
-SUBDIRS = doc src
+SUBDIRS = src doc man
docdir = $(datadir)/doc/$(PACKAGE)
doc_DATA = AUTHORS COPYING ChangeLog NEWS README
diff --git a/autogen.sh b/autogen.sh
index 6310f68..b983219 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,6 +1,3 @@
#!/bin/sh
-autoheader
-aclocal
-automake -a -c
-autoconf
+autoheader && aclocal && automake -a -c && autoconf
diff --git a/configure.in b/configure.in
index d329f5c..bec2bb3 100644
--- a/configure.in
+++ b/configure.in
@@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
-dnl $Id: configure.in,v 1.11 2001/02/18 23:01:17 sabetts Exp $
+dnl $Id: configure.in,v 1.12 2001/02/19 20:51:40 rcyeske Exp $
AC_INIT(src/main.c)
AM_INIT_AUTOMAKE(ratpoison, 0.0.6)
@@ -47,7 +47,7 @@ emacs_prog=$withval, emacs_prog="emacs")
AC_DEFINE_UNQUOTED(EMACS_PROG,"$emacs_prog")
dnl Checks for programs.
-CFLAGS="$CFLAGS -Wall"
+CFLAGS="$CFLAGS -Wall -g"
AC_CHECK_TOOL(CC, gcc)
AC_PROG_CC