summaryrefslogtreecommitdiff
path: root/src/include/Makefile
diff options
context:
space:
mode:
authorAlexander Korotkov <akorotkov@postgresql.org>2019-03-17 10:51:28 +0300
committerAlexander Korotkov <akorotkov@postgresql.org>2019-03-17 10:55:52 +0300
commit142c400d72f77e7249306b80e0149f4fd35c6304 (patch)
treed262adcbb0bfee383dc6dd2a9eec87b147d3c5b5 /src/include/Makefile
parentb8f9a2a69a279d118e366a0d3d45caa84a7620b1 (diff)
downloadpostgresql-142c400d72f77e7249306b80e0149f4fd35c6304.tar.gz
Fix make rules for jsonpath grammar making them similar to SQL grammar
Reported-by: Jeff Janes, Tom Lane Discussion: https://postgr.es/m/CAMkU%3D1w1qBvoW82ZTFpAKae027R-2OHw-m6ALe0VQRNAFueBVA%40mail.gmail.com
Diffstat (limited to 'src/include/Makefile')
-rw-r--r--src/include/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/Makefile b/src/include/Makefile
index c557375ae3..652f6dc6cc 100644
--- a/src/include/Makefile
+++ b/src/include/Makefile
@@ -54,7 +54,7 @@ install: all installdirs
cp $(srcdir)/$$dir/*.h '$(DESTDIR)$(includedir_server)'/$$dir/ || exit; \
done
ifeq ($(vpath_build),yes)
- for file in catalog/schemapg.h catalog/pg_*_d.h parser/gram.h storage/lwlocknames.h utils/probes.h; do \
+ for file in catalog/schemapg.h catalog/pg_*_d.h parser/gram.h storage/lwlocknames.h utils/probes.h utils/jsonpath_gram.h; do \
cp $$file '$(DESTDIR)$(includedir_server)'/$$file || exit; \
done
endif
@@ -78,7 +78,7 @@ uninstall:
clean:
rm -f utils/fmgroids.h utils/fmgrprotos.h utils/errcodes.h utils/header-stamp
- rm -f parser/gram.h storage/lwlocknames.h utils/probes.h
+ rm -f parser/gram.h storage/lwlocknames.h utils/probes.h utils/jsonpath_gram.h
rm -f catalog/schemapg.h catalog/pg_*_d.h catalog/header-stamp
distclean maintainer-clean: clean