Wed Nov 16 15:52:58 PST 2005
- Previous message: [Slony1-commit] By devrim: Fix SGML errors
- Next message: [Slony1-commit] By cbbrowne: New Directory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Dont check if sharedir exists when overriding.
Modified Files:
--------------
slony1-engine/config:
acx_libpq.m4 (r1.18 -> r1.19)
-------------- next part --------------
Index: acx_libpq.m4
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/config/acx_libpq.m4,v
retrieving revision 1.18
retrieving revision 1.19
diff -Lconfig/acx_libpq.m4 -Lconfig/acx_libpq.m4 -u -w -r1.18 -r1.19
--- config/acx_libpq.m4
+++ config/acx_libpq.m4
@@ -66,10 +66,15 @@
if test -n "${with_pgsharedir}"; then
_pwd=`pwd`
-cd ${with_pgsharedir}
-with_pgsharedir=`pwd`
+cd ${with_pgsharedir} 2>/dev/null
+_share=`pwd`
cd ${_pwd}
+ if test ${_pwd} = ${_share}; then
+ echo "overriding pgsharedir with" ${with_pgsharedir} "even though it wasn't found :)"
+ else
echo "overriding pgsharedir with" ${with_pgsharedir}
+ with_pgsharedir=${_share}
+ fi
PG_SHAREDIR=${with_pgsharedir}
fi
- Previous message: [Slony1-commit] By devrim: Fix SGML errors
- Next message: [Slony1-commit] By cbbrowne: New Directory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list