diff options
Diffstat (limited to 'emulators/bfe/files/patch-configure.sh')
-rw-r--r-- | emulators/bfe/files/patch-configure.sh | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/emulators/bfe/files/patch-configure.sh b/emulators/bfe/files/patch-configure.sh deleted file mode 100644 index 35fb2d731677..000000000000 --- a/emulators/bfe/files/patch-configure.sh +++ /dev/null @@ -1,49 +0,0 @@ ---- configure.sh.orig Sat Jan 25 07:08:39 2003 -+++ configure.sh Thu Feb 6 02:11:55 2003 -@@ -1,26 +1,18 @@ --#!/bin/bash -- --# csh and tcsh do not like this file --# ash produces incorrect quoting -- --if [ "`/bin/ls -la /bin/sh |grep '\-> ash'`" != "" ]; then -- echo -e "\nash shell is not supported\n" -- exit --fi -+#!/bin/sh - - ############################################################################## - --CC="cc" --LD="cc" --CFLAGS="-O2 -Wall" -+CC=%%CC%% -+LD=%%CC%% -+CFLAGS=%%CFLAGS%% - LFLAGS="" - - PROG="bfe2" - OWNER="root" --GROUP="root" -+GROUP="whell" - - # install directories --PREFIX="/usr/local" -+PREFIX=%%PREFIX%% - BIN="bin" - SYSCONF="etc" - -@@ -106,13 +98,6 @@ - INCS="\`pkg-config --cflags gtk+-2.0\`" - else - echo -e "\tInvalid GTK version [$GTK]" -- exit --fi -- --if [ "$BOCHS" == "2.0" ]; then -- BOCHSPATH="$BOCHSPATH -q" --else -- echo -e "\tInvalid Bochs version [$BOCHS]" - exit - fi - |