diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2013-07-03 19:03:31 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2013-07-03 19:03:31 -0400 |
commit | 82b0102650cf85268145a46f0ab488bacf6599a1 (patch) | |
tree | a42970ffc592d230cbbcd0aa23f29b8a4965565a | |
parent | 2ef085d0e6960f5087c97266a7211d37ddaa9f68 (diff) | |
download | postgresql-82b0102650cf85268145a46f0ab488bacf6599a1.tar.gz |
Install all a Makefile's extension controls, not just the first.
Bug introduced by commit 6697aa2bc25c83b88d6165340348a31328c35de6 and
reported by Robert Haas.
-rw-r--r-- | src/makefiles/pgxs.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/pgxs.mk b/src/makefiles/pgxs.mk index f4eaa744c5..8618aa1d1a 100644 --- a/src/makefiles/pgxs.mk +++ b/src/makefiles/pgxs.mk @@ -134,7 +134,7 @@ endif # PROGRAM installcontrol: $(addsuffix .control, $(EXTENSION)) ifneq (,$(EXTENSION)) - $(INSTALL_DATA) $< '$(DESTDIR)$(datadir)/extension/' + $(INSTALL_DATA) $^ '$(DESTDIR)$(datadir)/extension/' endif installdata: $(DATA) $(DATA_built) |