Fri Jul 23 16:22:43 PDT 2004
- Previous message: [Slony1-commit] By darcyb: Do not say successfully installed if there was an install
- Next message: [Slony1-commit] By cbbrowne: New Directory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Do not say sucessfull when infact there was a make error
Tags:
----
REL_1_0_STABLE
Modified Files:
--------------
slony1-engine:
Makefile (r1.8 -> r1.8.2.1)
configure.ac (r1.24 -> r1.24.2.1)
GNUmakefile.in (r1.4 -> r1.4.2.1)
-------------- next part --------------
Index: GNUmakefile.in
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/GNUmakefile.in,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -LGNUmakefile.in -LGNUmakefile.in -u -w -r1.4 -r1.4.2.1
--- GNUmakefile.in
+++ GNUmakefile.in
@@ -29,13 +29,13 @@
all:
for subdir in $(SUBDIRS) ; do \
- $(MAKE) -C $$subdir $@ ; \
+ $(MAKE) -C $$subdir $@ || exit; \
done && \
echo "All of Slony-I is successfully made. Ready to install"
install installdirs:
for subdir in $(SUBDIRS) ; do \
- $(MAKE) -C $$subdir $@ ; \
+ $(MAKE) -C $$subdir $@ || exit ; \
done && \
echo "All of Slony-I is successfully installed"
Index: configure.ac
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/configure.ac,v
retrieving revision 1.24
retrieving revision 1.24.2.1
diff -Lconfigure.ac -Lconfigure.ac -u -w -r1.24 -r1.24.2.1
--- configure.ac
+++ configure.ac
@@ -10,8 +10,9 @@
#
# Process this file with autoconf to produce a configure script.
# ----------
-
-AC_INIT(slony1-engine, 1.0.0)
+m4_define([SLONREL_VERSION], esyscmd([echo "$Name$" | sed -e 's/\:\ REL_//' -e 's/\$//g' -e 's/_/./g' -e 's/\./\_/3' -e 's/\ //g'| tr -d '\n']))
+ifelse([SLONREL_VERSION],`:',m4_define([SLONREL_VERSION], esyscmd([echo `date +HEAD_%Y%m%d`| tr -d '\n'])))
+AC_INIT(slony1-engine, [SLONREL_VERSION])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR([src])
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/Makefile,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -LMakefile -LMakefile -u -w -r1.8 -r1.8.2.1
--- Makefile
+++ Makefile
@@ -1,4 +1,4 @@
-all check install installdirs install-all-headers installcheck uninstall dep depend clean distclean maintainer-clean:
+all check install installdirs install-all-headers installcheck uninstall dep depend clean distclean maintainer-clean dist rpm:
@if [ ! -f GNUmakefile ] ; then \
echo "You need to run the 'configure' program first. See the file"; \
echo "'README' for installation instructions." ; \
- Previous message: [Slony1-commit] By darcyb: Do not say successfully installed if there was an install
- Next message: [Slony1-commit] By cbbrowne: New Directory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list