mbcrawfo/GenericMakefile

"-en" echoed in timing lines

Closed this issue · 1 comments

The output of the timing lines on my Linux machine look like this:

Compiling: hello.cpp -> build/release/hello.o
-en      Compile time: 
00:00:01
Linking: bin/release/hello
-en      Link time: 
00:00:00

This appears to be because by default GNU make is using /bin/sh. Adding a line which reads

SHELL = /bin/bash

Cleans up the "-en" output - might be worth considering?

Thanks, I'd run into the issue before on one of the platforms I use but never investigated the cause. Will be fixed in the next update.