From 41b487e3e23e7e91bf518827a2523b8ec50a1f30 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Mon, 11 Feb 2008 22:45:31 +0100 Subject: [PATCH] explicitly start sdl_helper with /bin/sh --- src/sim/makefile | 4 ++-- src/sim/sdl_helper | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) mode change 100755 => 100644 src/sim/sdl_helper 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`" -- 2.39.2