diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-06-27 09:35:38 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-06-27 09:35:38 +0000 |
| commit | aff3380d99fcb8041bc5964a2958cf832c267b2e (patch) | |
| tree | a905fee477b7080d1e3bdd0d27c366ca1cf4e467 | |
| parent | 3152bfc39a8e1b85c4d0e82fbb75a10dab528ea6 (diff) | |
| download | rockbox-aff3380d99fcb8041bc5964a2958cf832c267b2e.zip rockbox-aff3380d99fcb8041bc5964a2958cf832c267b2e.tar.gz rockbox-aff3380d99fcb8041bc5964a2958cf832c267b2e.tar.bz2 rockbox-aff3380d99fcb8041bc5964a2958cf832c267b2e.tar.xz | |
Make sure the build folder is created before trying to generate the dependencies file. Fixes issues building Rockbox Utility and voice file creation.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21527 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/rbspeex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile index 3e70d2e..c11ae29 100644 --- a/tools/rbspeex/Makefile +++ b/tools/rbspeex/Makefile @@ -45,7 +45,7 @@ DIRS = all: ../rbspeexenc ../rbspeexdec -$(DEPFILE): $(SOURCES) +$(DEPFILE): $(SOURCES) $(OUT) $(SILENT)rm -f $(DEPFILE) $(SILENT)(for each in $(SOURCES) x; do \ if test "x" != "$$each"; then \ |