I have a very simple makefile for launching my Django app using gunicorn:
run:
gunicorn_django
If I launch gunicorn using this makefile, then I cannot terminate it with Ctrl–C. However, if I just type gunicorn_django at the bash prompt, then I am able to terminate it with Ctrl–C.
Why would this be?
(Note: I’m running on OS X Lion).
A fix for this bug can be found here.