From: Tom Lane Date: Tue, 20 Nov 2001 00:27:13 +0000 (+0000) Subject: Double quotes in ln command to guard against spaces in path. X-Git-Tag: REL7_2_BETA3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1436b212ccd04566855819fc1895080602118752;p=postgresql Double quotes in ln command to guard against spaces in path. --- diff --git a/src/backend/Makefile b/src/backend/Makefile index 40a848005a..0bc9f02eeb 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.74 2001/09/16 16:11:10 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.75 2001/11/20 00:27:13 tgl Exp $ # #------------------------------------------------------------------------- @@ -103,7 +103,7 @@ utils/fmgroids.h: utils/Gen_fmgrtab.sh $(top_srcdir)/src/include/catalog/pg_proc $(top_builddir)/src/include/parser/parse.h: $(srcdir)/parser/parse.h prereqdir=`cd $(dir $<) >/dev/null && pwd` && \ cd $(dir $@) && rm -f $(notdir $@) && \ - $(LN_S) $$prereqdir/$(notdir $<) . + $(LN_S) "$$prereqdir/$(notdir $<)" . $(top_builddir)/src/include/utils/fmgroids.h: utils/fmgroids.h cd $(dir $@) && rm -f $(notdir $@) && \