From 2136399986f5cef194b4c2398b4db4087696f9cc Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 13 Mar 2020 11:04:34 +0200 Subject: [PATCH] kiss-chroot: Fix cxxflags. Closes #123 --- contrib/kiss-chroot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/kiss-chroot b/contrib/kiss-chroot index 86212db..71bfbb2 100755 --- a/contrib/kiss-chroot +++ b/contrib/kiss-chroot @@ -49,7 +49,7 @@ main() { USER=root \ KISS_ASROOT=1 \ CFLAGS="${2:--march=x86-64 -mtune=generic -pipe -Os}" \ - CXXFLAGS="${2:---march=x86-64 -mtune=generic -pipe -Os}" \ + CXXFLAGS="${2:--march=x86-64 -mtune=generic -pipe -Os}" \ MAKEFLAGS="-j$(nproc 2>/dev/null || echo 1)" \ /bin/sh -l }