Wed Jan 26 19:51:26 PST 2005
- Previous message: [Slony1-commit] By darcyb: Bring sed detection forward
- Next message: [Slony1-commit] By cbbrowne: Test where the nodes are numbered 11 and 22 rather than 1
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Use the detected version of sed
Modified Files:
--------------
slony1-engine/src/slonik:
slonik.c (r1.39 -> r1.40)
Makefile (r1.13 -> r1.14)
-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slonik/Makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -Lsrc/slonik/Makefile -Lsrc/slonik/Makefile -u -w -r1.13 -r1.14
--- src/slonik/Makefile
+++ src/slonik/Makefile
@@ -15,7 +15,7 @@
CFLAGS += -D_LARGE_FILES
endif
-override CFLAGS += -I$(slony_top_builddir) -I$(pgincludedir) -I$(pgincludeserverdir) -DPGSHARE="\"$(pgsharedir)\""
+override CFLAGS += -I$(slony_top_builddir) -I$(pgincludedir) -I$(pgincludeserverdir) -DPGSHARE="\"$(pgsharedir)\"" -DSED="\"$(SED)\""
override LDFLAGS += $(rpath) -lpq
PROG = slonik
Index: slonik.c
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slonik/slonik.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -Lsrc/slonik/slonik.c -Lsrc/slonik/slonik.c -u -w -r1.39 -r1.40
--- src/slonik/slonik.c
+++ src/slonik/slonik.c
@@ -1673,7 +1673,7 @@
close(sed_pipe[0]);
close(sed_pipe[1]);
- execlp("sed", "sed", "-e", rex1, "-e", rex2, fnamebuf, NULL);
+ execlp(SED, SED, "-e", rex1, "-e", rex2, fnamebuf, NULL);
perror("execlp()");
exit(-1);
- Previous message: [Slony1-commit] By darcyb: Bring sed detection forward
- Next message: [Slony1-commit] By cbbrowne: Test where the nodes are numbered 11 and 22 rather than 1
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list