blob: 9ceb4e8650ede3cc1b05c48f539d82c2e5c3c422 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- configure.orig Sat Feb 26 10:40:57 2005
+++ configure Wed Mar 2 02:51:00 2005
@@ -1,12 +1,12 @@
-#!/bin/bash
+#!/bin/sh
MAKE=make
-which gmake >& /dev/null
+which gmake > /dev/null
if [ $? = 0 ]; then
MAKE=gmake
fi
-uname | grep FreeBSD >& /dev/null
+uname | grep FreeBSD > /dev/null
if [ $? = 0 ]; then
FREEBSD=1
else
|