diff options
| author | Bruce Momjian | 2011-03-05 23:32:06 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2011-03-05 23:32:39 +0000 |
| commit | c15c1f1c15fc19d20c0699aeb312664f5529c87a (patch) | |
| tree | fb0852174e98f8f377be73aab38a5091ac63ee03 /src/pl/tcl | |
| parent | a956b160261579ae2422b539ccf73d75684351fb (diff) | |
Fix parallel gmake for extension directory addition in PL languages.
Diffstat (limited to 'src/pl/tcl')
| -rw-r--r-- | src/pl/tcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile index c7797c61f5e..faffd09fd3e 100644 --- a/src/pl/tcl/Makefile +++ b/src/pl/tcl/Makefile @@ -54,7 +54,7 @@ all: all-lib $(MAKE) -C modules $@ -install: all installdirs install-lib install-data +install: all install-lib install-data $(MAKE) -C modules $@ installdirs: installdirs-lib @@ -64,7 +64,7 @@ installdirs: installdirs-lib uninstall: uninstall-lib uninstall-data $(MAKE) -C modules $@ -install-data: +install-data: installdirs @for file in $(addprefix $(srcdir)/, $(DATA)); do \ echo "$(INSTALL_DATA) $$file '$(DESTDIR)$(datadir)/extension'"; \ $(INSTALL_DATA) $$file '$(DESTDIR)$(datadir)/extension'; \ |
