diff options
author | Jonathan Rascher <jon@bcat.name> | 2019-10-28 20:08:48 -0500 |
---|---|---|
committer | Joel Challis <git@zvecr.com> | 2019-10-29 01:08:48 +0000 |
commit | afc5cb7f0abafd75c178b188a5fc1b9138fba956 (patch) | |
tree | f70a65ed4e6faaff7ea095746ccd310f42020483 | |
parent | e48fdebe5a351772c4f34b201130271a42c1496d (diff) | |
download | qmk_firmware-afc5cb7f0abafd75c178b188a5fc1b9138fba956.tar.gz qmk_firmware-afc5cb7f0abafd75c178b188a5fc1b9138fba956.zip |
Fix Lily58 build with link-time optimization (#7181)
-rw-r--r-- | keyboards/lily58/config.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/keyboards/lily58/config.h b/keyboards/lily58/config.h index fb1cdf396..50bf2beb3 100644 --- a/keyboards/lily58/config.h +++ b/keyboards/lily58/config.h | |||
@@ -24,5 +24,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
24 | #define USE_I2C | 24 | #define USE_I2C |
25 | #define USE_SERIAL | 25 | #define USE_SERIAL |
26 | 26 | ||
27 | #define NO_ACTION_MACRO | 27 | #if !defined(NO_ACTION_MACRO) |
28 | #define NO_ACTION_FUNCTION | 28 | #define NO_ACTION_MACRO |
29 | #endif | ||
30 | #if !defined(NO_ACTION_FUNCTION) | ||
31 | #define NO_ACTION_FUNCTION | ||
32 | #endif | ||