Re: BUG #1766: contrib/ modules can't install with --without-docdir

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: ISHIDA Akio <iakio(at)mono-space(dot)net>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #1766: contrib/ modules can't install with --without-docdir
Date: 2005-08-12 21:02:34
Message-ID: 200508122102.j7CL2YO04475@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


Patch applied. Thanks.

---------------------------------------------------------------------------

ISHIDA Akio wrote:
>
> The following bug has been logged online:
>
> Bug reference: 1766
> Logged by: ISHIDA Akio
> Email address: iakio(at)mono-space(dot)net
> PostgreSQL version: 8.0.3
> Operating system: Linux
> Description: contrib/ modules can't install with --without-docdir
> Details:
>
> $ ./configure --without-docdir
> ..
> $ cd contrib/pgstattuple/
> $ make install
> mkdir -p -- /contrib
> mkdir: cannot create directory `/contrib': Permission denied
> make: *** [installdirs] Error 1
>
>
> --- src/makefiles/pgxs.mk.org 2004-10-11 01:13:03.000000000 +0900
> +++ src/makefiles/pgxs.mk 2005-07-14 09:54:24.000000000 +0900
> @@ -100,10 +100,12 @@
> done
> endif # MODULES
> ifdef DOCS
> +ifdef docdir
> @for file in $(addprefix $(srcdir)/, $(DOCS)); do \
> echo "$(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/contrib"; \
> $(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/contrib; \
> done
> +endif # docdir
> endif # DOCS
> ifdef PROGRAM
> $(INSTALL_PROGRAM) $(PROGRAM)$(X) $(DESTDIR)$(bindir)
> @@ -133,8 +135,10 @@
> $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
> endif
> ifdef DOCS
> +ifdef docdir
> $(mkinstalldirs) $(DESTDIR)$(docdir)/contrib
> -endif
> +endif # docdir
> +endif # DOCS
> ifneq (,$(PROGRAM)$(SCRIPTS)$(SCRIPTS_built))
> $(mkinstalldirs) $(DESTDIR)$(bindir)
> endif
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Bruce Momjian 2005-08-13 01:55:44 Re: [PATCHES] BUG #1794: inheritance removes permissions from
Previous Message HERNAN RODRIGUEZ 2005-08-12 16:58:26 BUG #1825: installation problems