Commit baeafa91 authored by Tom Lane's avatar Tom Lane

Clean up gmake warning caused by recent NetBSD patch. <grumble>

parent 791bc683
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.44 2000/03/08 01:58:16 momjian Exp $ # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.45 2000/03/08 22:00:19 tgl Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -257,16 +257,25 @@ ifeq ($(PORTNAME), hpux) ...@@ -257,16 +257,25 @@ ifeq ($(PORTNAME), hpux)
$(HEADERDIR)/port/hpux/fixade.h $(HEADERDIR)/port/hpux/fixade.h
endif endif
$(BINDIR): $(BINDIR):
mkdir $@ mkdir $@
$(LIBDIR): $(LIBDIR):
mkdir $@ mkdir $@
$(HEADERDIR): $(HEADERDIR):
mkdir $@ mkdir $@
# TEMPLATEDIR is commonly the same as LIBDIR, but it might be different.
# We don't want duplicate rules if they are the same.
ifneq ($(TEMPLATEDIR),$(LIBDIR))
$(TEMPLATEDIR): $(TEMPLATEDIR):
mkdir $@ mkdir $@
endif
############################################################################# #############################################################################
# #
# Support for code development. # Support for code development.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment