diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-01 22:39:06 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-01 22:39:06 +0000 |
commit | e91cea0605045951a3df208d73d93026fef31e8f (patch) | |
tree | 2c0af1a1ace127443a2e6d124aa0bac1de2771b0 /src | |
parent | 90256c7f975df47db109b583c7ae23b7e1e1c1d2 (diff) | |
download | usdx-e91cea0605045951a3df208d73d93026fef31e8f.tar.gz usdx-e91cea0605045951a3df208d73d93026fef31e8f.tar.xz usdx-e91cea0605045951a3df208d73d93026fef31e8f.zip |
added start path "." for find. Mac OS X still needs it.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1336 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index bcb07a91..8bdbca40 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -113,8 +113,8 @@ endif # general targets ################################################# -INC_FILES = $(shell find -name "*.inc") -PAS_FILES = $(shell find -name "*.pas" -o -name "*.pp") +INC_FILES = $(shell find . -name "*.inc") +PAS_FILES = $(shell find . -name "*.pas" -o -name "*.pp") BIN_DEPS = .PHONY: all |