Skip to content

Commit a06c65d

Browse files
committed
Raise error with malformed table warning (& test)
1 parent f36602b commit a06c65d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ clean:
5454

5555
.PHONY: html
5656
html:
57-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
57+
$(SPHINXBUILD) -W -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
5858
@echo
5959
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
6060

make.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ if errorlevel 9009 (
7373

7474

7575
if "%1" == "html" (
76-
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
76+
%SPHINXBUILD% -W -b html %ALLSPHINXOPTS% %BUILDDIR%/html
7777
if errorlevel 1 exit /b 1
7878
echo.
7979
echo.Build finished. The HTML pages are in %BUILDDIR%/html.

make_mac.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export LC_ALL=en_US.UTF-8
22
export LANG=en_US.UTF-8
3-
make html
3+
make -W html

reference/build_helpers/autotools.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ The following environment variables will also affect the `AutoToolsBuildEnvironm
310310
+--------------------+-------------------------------------------------------------------------------------+
311311
| CFLAGS | Options for the C compiler (-g, -s, -m64, -m32, -fPIC) |
312312
+--------------------+-------------------------------------------------------------------------------------+
313-
| CXXFLAGS | Options for the C++ compiler (-g, -s, -stdlib, -m64, -m32, -fPIC, -std) |
313+
| CXXFLAGS | Options for the C++ compiler (-g, -s, -stdlib, -m64, -m32, -fPIC, -std) |
314314
+--------------------+-------------------------------------------------------------------------------------+
315315
| CPPFLAGS | Preprocessor definitions (-D, -I) |
316316
+--------------------+-------------------------------------------------------------------------------------+

0 commit comments

Comments
 (0)