浏览代码

remove find wrapper, not needed for maverick anymore

Waldemar Brodkorb 11 年之前
父节点
当前提交
d23f73222f
共有 1 个文件被更改,包括 0 次插入14 次删除
  1. 0 14
      scripts/find

+ 0 - 14
scripts/find

@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-find=$(which find)
-os=$(uname)
-case $os in
-	Darwin)
-		/opt/local/libexec/gnubin/find "$@"
-		;;
-	*)
-		/usr/bin/find "$@"
-		;;
-esac