Skip to content

Commit f4f384d

Browse files
author
Povilas Kanapickas
committed
Transform: Fix incorrect file locations
1 parent 6e36806 commit f4f384d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ output/cppreference-doc-en-c.devhelp2: \
108108
output/link-map.xml
109109
./index2devhelp.py $(docdir)/html index-chapters-c.xml \
110110
"C Standard Library reference" "cppreference-doc-en-c" "c" \
111-
index-functions-c.xml devhelp-index-c.xml
111+
index-functions-c.xml "output/devhelp-index-c.xml"
112112
./fix_devhelp-links.py "output/devhelp-index-c.xml" \
113113
"output/cppreference-doc-en-c.devhelp2"
114114

fix_devhelp-links.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
in_fn = sys.argv[1]
3131
out_fn = sys.argv[2]
3232

33-
map_file = open('link-map.xml', 'r')
33+
map_file = open('output/link-map.xml', 'r')
3434
root = e.XML(map_file.read())
3535
el_files = root.xpath('/files/*')
3636

0 commit comments

Comments
 (0)