vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Author: dpage Date: 2005-08-25 21:39:06 +0100 (Thu, 25 Aug 2005) New Revision: 4416 Modified: trunk/pgadmin3/xtra/pgagent/Makefile.am Log: I attach patch, without which creating package as not-root (with fakeroot) is impossible, as make install tries to install pgagent.sql into /usr/share/pgadmin, not into PREFIX/usr/share/pgadmin [Tomasz Rybak] Modified: trunk/pgadmin3/xtra/pgagent/Makefile.am ================================================== ================= --- trunk/pgadmin3/xtra/pgagent/Makefile.am 2005-08-23 21:23:26 UTC (rev 4415) +++ trunk/pgadmin3/xtra/pgagent/Makefile.am 2005-08-25 20:39:06 UTC (rev 4416) @@ -57,4 +57,4 @@ endif install-data-local: - $(install_sh) -c -m 644 pgagent.sql $(pkgdatadir)/pgagent.sql + $(install_sh) -c -m 644 pgagent.sql $(DESTDIR)/$(pkgdatadir)/pgagent.sql ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |