Thu Sep 2 18:08:37 PDT 2004
- Previous message: [Slony1-commit] By darcyb: Changes to have slony build a bit better on Tru64
- Next message: [Slony1-commit] By darcyb: Note that we neeed POSIX threads, and PG 7.3.3, also bump the
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Clean up some compileing noise first spotted under Tru64
Modified Files:
--------------
slony1-engine:
GNUmakefile.in (r1.14 -> r1.15)
slony1-engine/doc:
Makefile (r1.7 -> r1.8)
slony1-engine/makefiles:
Makefile.osf (r1.5 -> r1.6)
slony1-engine/src:
Makefile (r1.9 -> r1.10)
-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/doc/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -Ldoc/Makefile -Ldoc/Makefile -u -w -r1.7 -r1.8
--- doc/Makefile
+++ doc/Makefile
@@ -18,7 +18,7 @@
all install installdirs:
clean distclean maintainer-clean:
- for subdir in $(SUBDIRS) ; do \
+ @for subdir in $(SUBDIRS) ; do \
$(MAKE) -C $$subdir $@ ; \
done
@@ -26,9 +26,9 @@
distdir: $(DISTFILES)
mkdir -p $(distdir)/$(subdir)
-chmod 777 $(distdir)/$(subdir)
- for file in $(DISTFILES) ; do \
+ @for file in $(DISTFILES) ; do \
cp $$file $(distdir)/$(subdir)/$$file ; \
done
- for subdir in $(SUBDIRS) ; do \
+ @for subdir in $(SUBDIRS) ; do \
$(MAKE) -C $$subdir distdir ; \
done
Index: Makefile.osf
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/makefiles/Makefile.osf,v
retrieving revision 1.5
retrieving revision 1.6
diff -Lmakefiles/Makefile.osf -Lmakefiles/Makefile.osf -u -w -r1.5 -r1.6
--- makefiles/Makefile.osf
+++ makefiles/Makefile.osf
@@ -1,4 +1,4 @@
-INCLUDE += -I/usr/include
+CFLAGS += -I/usr/include
AROPT = crs
DLSUFFIX = .so
Index: GNUmakefile.in
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/GNUmakefile.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -LGNUmakefile.in -LGNUmakefile.in -u -w -r1.14 -r1.15
--- GNUmakefile.in
+++ GNUmakefile.in
@@ -27,19 +27,19 @@
all:
- for subdir in src doc tools ; do \
+ @for subdir in src doc tools ; do \
$(MAKE) -C $$subdir $@ || exit; \
done && \
echo "All of Slony-I is successfully made. Ready to install"
install installdirs:
- for subdir in src doc tools ; do \
+ @for subdir in src doc tools ; do \
$(MAKE) -C $$subdir $@ || exit; \
done && \
echo "All of Slony-I is successfully installed"
clean:
- for subdir in src doc tools ; do \
+ @for subdir in src doc tools ; do \
$(MAKE) -C $$subdir $@ ; \
done ;\
rm -f postgresql.imp
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/Makefile,v
retrieving revision 1.9
retrieving revision 1.10
diff -Lsrc/Makefile -Lsrc/Makefile -u -w -r1.9 -r1.10
--- src/Makefile
+++ src/Makefile
@@ -15,16 +15,16 @@
SUBDIRS = xxid slon slonik backend ducttape
all install installdirs clean distclean maintainer-clean:
- for subdir in $(SUBDIRS) ; do \
+ @for subdir in $(SUBDIRS) ; do \
$(MAKE) -C $$subdir $@ || exit; \
done
distdir: $(DISTFILES)
mkdir $(distdir)/$(subdir)
-chmod 777 $(distdir)/$(subdir)
- for file in $(DISTFILES) ; do \
+ @for file in $(DISTFILES) ; do \
cp $$file $(distdir)/$(subdir)/$$file ; \
done
- for subdir in $(SUBDIRS) ; do \
+ @for subdir in $(SUBDIRS) ; do \
$(MAKE) -C $$subdir distdir ; \
done
- Previous message: [Slony1-commit] By darcyb: Changes to have slony build a bit better on Tru64
- Next message: [Slony1-commit] By darcyb: Note that we neeed POSIX threads, and PG 7.3.3, also bump the
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list