I got a configure script file that originally will create some CFLAGS when doing ./configure. I am wondering how can we append some other CFLAGS when doing ./configure without changing the original CFLAGS like:
./configure CFLAGS+="some flags"
Above is not the correct way to append so I am wondering what would be the best way to append.