From c2b4114de44e23d527731915ce7bbe3b72c6112d Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sun, 23 Aug 2009 12:35:03 +0300 Subject: [PATCH] Clean/ignore debian build files --- .gitignore | 5 +++++ clean | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cb85c50..06ce3a7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,8 @@ /mplayer_options /ffmpeg_build /ffmpeg-mt-enabled +# Debian package build creates random files under debian/. +# Ignore the whole directory even though that will cause some problems. +/debian +/build-stamp +/configure-stamp diff --git a/clean b/clean index 962b6d7..99bd7b4 100755 --- a/clean +++ b/clean @@ -5,7 +5,8 @@ from script.helpers import GitWrapper def main(): git = GitWrapper() - check_call('rm -rf build_libs ffmpeg_build'.split()) + check_call('rm -rf build_libs ffmpeg_build build-stamp configure-stamp'.split()) + check_call('git clean -x -d -f debian/'.split()) def cmd(): check_call('git clean -x -d -f'.split()) git.foreach_submodule(cmd) -- 2.11.4.GIT