From a9912e04bd4add6c1042ab361259c0f64cc32594 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 23 Aug 2005 17:04:27 +0200 Subject: [PATCH] [build] shut a find usage warning (again) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88968c7..c76c0c9 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ endif export KRNLSRC export KRNLOBJ -BUILDDIRS = $(shell find . -name Makefile -mindepth 2 -exec dirname {} \;) +BUILDDIRS = $(shell find . -mindepth 2 -name Makefile -exec dirname {} \;) VERSION = $(shell basename ${PWD} | cut -d'-' -f3) -- 2.7.4