diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2020-05-02 14:35:34 +0200 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2020-05-02 14:35:34 +0200 |
commit | 84af4092648b1deb71e1eb2a75272155be9604c0 (patch) | |
tree | 65025ca95be9cd64d3f6e1317a884b589c992e03 | |
parent | 0542dd27cac69093717144db334cf98a20779aed (diff) | |
download | portable-84af4092648b1deb71e1eb2a75272155be9604c0.tar.gz portable-84af4092648b1deb71e1eb2a75272155be9604c0.tar.bz2 portable-84af4092648b1deb71e1eb2a75272155be9604c0.zip |
missing change of variable
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 0221351..0afbe0f 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -72,8 +72,8 @@ AC_ARG_ENABLE([tests], | |||
72 | if ! test "x${enable_tests}" = "xyes"; then | 72 | if ! test "x${enable_tests}" = "xyes"; then |
73 | enable_tests="no" | 73 | enable_tests="no" |
74 | fi], | 74 | fi], |
75 | [have_tests="yes"]) | 75 | [enable_tests="yes"]) |
76 | AM_CONDITIONAL([ENABLE_TESTS], [test "x$have_tests" = xyes]) | 76 | AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = xyes]) |
77 | 77 | ||
78 | # Add CPU-specific alignment flags | 78 | # Add CPU-specific alignment flags |
79 | old_cflags=$CFLAGS | 79 | old_cflags=$CFLAGS |