Log Message:
-----------
Automake trys to execute install-exec-hook if it appears anywhere in the file,
so we need a dummy for non-APPBUNDLE cases.
Modified Files:
--------------
pgadmin3/pkg/mac:
Makefile.am (r1.2 -> r1.3)
pgadmin3/src:
Makefile.am (r1.105 -> r1.106)
Index: Makefile.am
===================================================================
RCS file: /projects/pgadmin3/pkg/mac/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lpkg/mac/Makefile.am -Lpkg/mac/Makefile.am -u -w -r1.2 -r1.3
--- pkg/mac/Makefile.am
+++ pkg/mac/Makefile.am
@@ -9,8 +9,8 @@
$(srcdir)/pgadmin3.icns \
$(srcdir)/PkgInfo
-if APPBUNDLE
install-exec-hook:
+if APPBUNDLE
$(install_sh_DATA) PkgInfo $(bundledir)/PkgInfo
$(install_sh_DATA) Info.plist $(bundledir)/Contents/Info.plist
$(install_sh_DATA) "pgadmin3.icns"
"$(bundledir)/Contents/Resources/pgAdmin3.icns"
Index: Makefile.am
===================================================================
RCS file: /projects/pgadmin3/src/Makefile.am,v
retrieving revision 1.105
retrieving revision 1.106
diff -Lsrc/Makefile.am -Lsrc/Makefile.am -u -w -r1.105 -r1.106
--- src/Makefile.am
+++ src/Makefile.am
@@ -204,6 +204,10 @@
AM_CPPFLAGS = -DDATA_DIR=\"$(pkgdatadir)/\" -Wall -g
-I$(top_srcdir)/src/include -I$(top_srcdir)/src/agent/include
-I$(top_srcdir)/src/slony/include
AM_CFLAGS = -DDATA_DIR=\"$(pkgdatadir)/\" -Wall -g -I$(top_srcdir)/src/include
-I$(top_srcdir)/src/agent/include -I$(top_srcdir)/src/slony/include
+# Automake trys to execute install-exec-hook if it appears anywhere in the
file, so we need a dummy
+# for non-APPBUNDLE cases.
+install-exec-hook:
+
else
nobase_dist_data_DATA = $(TMP_ui)
---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match