summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2010-12-31 17:57:38 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-12-31 17:57:38 +0100
commit0baa693d36f59080ff1c474d339b950cefa13dd5 (patch)
treeb8fbc1a81634febbe8729f924973ad62d1af2e88
parentf22b7bb5529b816eef840a1180b677e4ea31b124 (diff)
downloadeurephia-0baa693d36f59080ff1c474d339b950cefa13dd5.tar.gz
eurephia-0baa693d36f59080ff1c474d339b950cefa13dd5.tar.xz
eurephia-0baa693d36f59080ff1c474d339b950cefa13dd5.zip
Call 'find' properly in ./configure
Some platforms expects a path to be given, so adding a relative path to the 'find' expressions. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 22c0c38..4fd5865 100755
--- a/configure
+++ b/configure
@@ -303,12 +303,12 @@ EOF
# Update Makefile with distclean and uninstall rules
cat >> Makefile <<EOF
distclean : clean
- find -type d -name "CMakeFiles" | xargs rm -rf
- find -type f -name "cmake_install.cmake" | xargs rm -rf
- find -type f -name CMakeCache.txt | xargs rm -rf
- find -type f -name install_manifest.txt | xargs rm -rf
- find -type f -name Makefile | xargs rm -rf
- find -type f -name "*~" | xargs rm -f
+ find . -type d -name "CMakeFiles" | xargs rm -rf
+ find . -type f -name "cmake_install.cmake" | xargs rm -rf
+ find . -type f -name CMakeCache.txt | xargs rm -rf
+ find . -type f -name install_manifest.txt | xargs rm -rf
+ find . -type f -name Makefile | xargs rm -rf
+ find . -type f -name "*~" | xargs rm -f
rm -f CMakeCache.txt
${DOXY_DISTCLEAN}