Fix python2 parse

This commit is contained in:
Raúl Marín 2019-12-19 17:08:46 +01:00
parent 32b2068648
commit fb0b9d51b1

View File

@ -33,7 +33,7 @@ ifneq ($(PG_PARALLEL), true)
endif
ifneq ($(PYTHON3), true)
$(eval TMPFILE := $(shell mktemp /tmp/$@.XXXXXXXXXX))
$(SED) -e 's/plpython3u/plpythonu/g' $$n > $(TMPFILE);
$(SED) -e 's/plpython3u/plpythonu/g' $@ > $(TMPFILE);
mv $(TMPFILE) $@
endif