X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-0.8 required=5.0 tests=AWL,BAYES_20,J_CHICKENPOX_25,J_CHICKENPOX_26 X-Spam-Check-By: sourceware.org Message-ID: <496B828A.3010006@bonhard.uklinux.net> Date: Mon, 12 Jan 2009 17:48:58 +0000 From: Fergus User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Cygwin ML CC: Fergus Subject: Re: Reliably check if we're running under cygwin inside Makefile Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Note-from-DJ: This may be spam > osname := $(shell uname -s) > osver := $(shell uname -r) > cpuarch := $(shell uname -m) Probably the fault is mine but I can't get this to do anything useful in Cygwin. You could try (something like): case `uname` in *CYGWIN*) OS=Cygwin ;; *Darwin*) OS=Darwin ;; *) OS=Linux ;; esac and then try things like if [ ${OS} == "Linux" ] then .. fi Fergus -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/