diff options
author | Mike Magin <git@mike.magin.org> | 2013-11-17 08:11:05 -0800 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-11-17 15:10:40 -0400 |
commit | 41d2c0e9a5016eb055a9c224c044a4d1eecbc613 (patch) | |
tree | 8a21e7bb79afcfc1932b6486037b980675402bc4 /Makefile | |
parent | 889e3684e8f441e39d5aeb1755f78b705e60b0d9 (diff) |
Add explicit path to find invocation in "make clean" target.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -83,8 +83,8 @@ clean: Setup Build/InstallDesktopFile Build/EvilSplicer \ Build/Standalone Build/OSXMkLibs \ git-union-merge git-recover-repository - find -name \*.o -exec rm {} \; - find -name \*.hi -exec rm {} \; + find . -name \*.o -exec rm {} \; + find . -name \*.hi -exec rm {} \; Build/InstallDesktopFile: Build/InstallDesktopFile.hs $(GHC) --make $@ |