File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ ifneq "$(shell cd $(CPYTHON_CLONE) 2>/dev/null && git describe --contains --all
75
75
$(error "You're merging from a different branch")
76
76
endif
77
77
(cd $(CPYTHON_CLONE)/Doc; rm -f build/NEWS)
78
- (cd $(CPYTHON_CLONE); $(VENV)/bin/sphinx-build -Q -b gettext -D gettext_compact=0 Doc pot/)
79
- find $(CPYTHON_CLONE)/pot/ -name '*.pot' |\
78
+ (cd $(CPYTHON_CLONE)/Doc ; $(VENV)/bin/sphinx-build -Q -b gettext -D gettext_compact=0 . locales/ pot/)
79
+ find $(CPYTHON_CLONE)/Doc/locales/ pot/ -name '*.pot' |\
80
80
while read -r POT;\
81
81
do\
82
- PO="./$$(echo "$$POT" | sed "s# $(CPYTHON_CLONE)/pot/##; s#\.pot\$$#.po#")";\
82
+ PO="./$$(echo "$$POT" | sed "s# $(CPYTHON_CLONE)/Doc/locales/ pot/##; s#\.pot\$$#.po#")";\
83
83
mkdir -p "$$(dirname "$$PO")";\
84
84
if [ -f "$$PO" ];\
85
85
then\
You can’t perform that action at this time.
0 commit comments