foxygit / doom Log in
commit e03c281d8363e0f7ee82b89de3196869ae3ee9f0
Author:     Mike Swanson <mikeonthecomputer@gmail.com>
AuthorDate: Sat Mar 17 10:50:07 2018 -0700
Commit:     Mike Swanson <mikeonthecomputer@gmail.com>
CommitDate: Sat Mar 17 10:50:07 2018 -0700

    man: Remove quotes added in my prior commit for the WIN32 define

    I have a habit of doing this in shell, and Make is not shell.  It was
    overall harmless, but it looks cleaner when building to not see
    "-D_WIN32" (quotes included) in the commands being run.
---
 man/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man/Makefile.am b/man/Makefile.am
index ac7a89ea..78ef3952 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -19,7 +19,7 @@ if HAVE_PYTHON

 if HAVE_WINDRES

-WIN32="-D_WIN32"
+WIN32=-D_WIN32

 endif