diff options
author | Peter Eisentraut | 2009-06-26 06:37:14 +0000 |
---|---|---|
committer | Peter Eisentraut | 2009-06-26 06:37:14 +0000 |
commit | ed94b814acb579c03227dd84f2995055e05c2d58 (patch) | |
tree | dd40a7d79411286503703f197aa6b30a7b2a170d | |
parent | a95ff485a6f79d1fb8a6c8d3fbeb8d609ea543db (diff) |
Use $(TAR) instead of tar in makefiles.
-rw-r--r-- | doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile index 02d6287f12..004218afaf 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -96,10 +96,10 @@ endif uninstall: ifdef found_html - rm -f $(addprefix $(DESTDIR)$(htmldir)/html/, $(shell gunzip -c $(srcdir)/postgres.tar.gz | tar tf -)) + rm -f $(addprefix $(DESTDIR)$(htmldir)/html/, $(shell gunzip -c $(srcdir)/postgres.tar.gz | $(TAR) tf -)) endif ifdef found_man - rm -f $(filter-out %/, $(addprefix $(DESTDIR)$(mandir)/, $(shell gunzip -c $(srcdir)/man.tar.gz | tar tf - | sed -e 's,man7/,man$(sqlmansectnum)/,' -e 's/.7$$/.$(sqlmansect)/'))) + rm -f $(filter-out %/, $(addprefix $(DESTDIR)$(mandir)/, $(shell gunzip -c $(srcdir)/man.tar.gz | $(TAR) tf - | sed -e 's,man7/,man$(sqlmansectnum)/,' -e 's/.7$$/.$(sqlmansect)/'))) endif |