diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-10-06 15:16:12 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-10-06 15:16:12 +0000 |
commit | 9a1c87ca60539715c1f8fc7e8d00f629eb44b642 (patch) | |
tree | ac87294ef2dc030deaca0bfb7cdbd99cd0b32ca9 /code/unix | |
parent | 079f24d46b34fbe15812e51fb09d185c379f0c56 (diff) | |
download | ioquake3-aero-9a1c87ca60539715c1f8fc7e8d00f629eb44b642.tar.gz ioquake3-aero-9a1c87ca60539715c1f8fc7e8d00f629eb44b642.zip |
* Usage of find on FreeBSD fix from Andreas Kohn
git-svn-id: svn://svn.icculus.org/quake3/trunk@145 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix')
-rw-r--r-- | code/unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index 42fb7d8..5337057 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -1435,7 +1435,7 @@ distclean: clean # DEPENDENCIES ############################################################################# -D_FILES=$(shell find -name "*.d") +D_FILES=$(shell find . -name '*.d') ifneq ($(strip $(D_FILES)),) include $(D_FILES) |