From: Michael Gernoth Date: Mon, 11 Feb 2008 21:45:31 +0000 (+0100) Subject: explicitly start sdl_helper with /bin/sh X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/commitdiff_plain/41b487e3e23e7e91bf518827a2523b8ec50a1f30 explicitly start sdl_helper with /bin/sh --- diff --git a/src/sim/makefile b/src/sim/makefile index 5a8a622..7e4dd05 100644 --- a/src/sim/makefile +++ b/src/sim/makefile @@ -5,8 +5,8 @@ TCLXHOME = ../tclx TCLLIBRARY = /usr/local/lib/tcl TKLIBRARY = /usr/local/lib/tk -SDLINCLUDE = $$(./sdl_helper cflags) -SDLLIBS = $$(./sdl_helper libs) +SDLINCLUDE = $$(/bin/sh ./sdl_helper cflags) +SDLLIBS = $$(/bin/sh ./sdl_helper libs) CC = gcc diff --git a/src/sim/sdl_helper b/src/sim/sdl_helper old mode 100755 new mode 100644 index 5406da9..c0dfdb8 --- a/src/sim/sdl_helper +++ b/src/sim/sdl_helper @@ -1,5 +1,3 @@ -#!/bin/sh - SDLINCLUDE="`pkg-config --cflags sdl 2>/dev/null`" SDLLIBS="`pkg-config --libs sdl 2>/dev/null`"