summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-04-25 12:32:47 +0000
committerRoy Marples <roy@marples.name>2007-04-25 12:32:47 +0000
commit00d596fb439d9c3aff6c6d06448b194681333d46 (patch)
treef6178f22d594b5bab8559c21de26c9033b8d50c8 /Makefile
parentdfc208bd25288dd09d531f3e0665274bb9cf2998 (diff)
downloadopenrc-00d596fb439d9c3aff6c6d06448b194681333d46.tar.gz
openrc-00d596fb439d9c3aff6c6d06448b194681333d46.tar.bz2
openrc-00d596fb439d9c3aff6c6d06448b194681333d46.tar.xz
Fix Makefile to clean and remove .svn when making dist. rc-mount no longer appends -f for linux mount and uses -i instead to ignore helpers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 743ee45..96e81cf 100644
--- a/Makefile
+++ b/Makefile
@@ -90,6 +90,8 @@ diststatus:
distforce:
rm -rf /tmp/$(PKG)
cp -pPR . /tmp/$(PKG)
+ $(MAKE) -C /tmp/$(PKG) clean
+ (find /tmp/$(PKG) -type d -name .svn -exec rm -rf {} \; 2>/dev/null; exit 0)
tar -C /tmp -cvjpf /tmp/$(PKG).tar.bz2 $(PKG)
rm -rf /tmp/$(PKG)
ls -l /tmp/$(PKG).tar.bz2
@@ -97,6 +99,7 @@ distforce:
distit:
rm -rf /tmp/$(PKG)
svn export . /tmp/$(PKG)
+ $(MAKE) -C /tmp/$(PKG) clean
tar -C /tmp -cvjpf /tmp/$(PKG).tar.bz2 $(PKG)
rm -rf /tmp/$(PKG)
ls -l /tmp/$(PKG).tar.bz2