r2769 - dists/trunk/live-helper
lamby-guest at alioth.debian.org
lamby-guest at alioth.debian.org
Thu Aug 16 19:11:45 UTC 2007
Author: lamby-guest
Date: 2007-08-16 19:11:44 +0000 (Thu, 16 Aug 2007)
New Revision: 2769
Modified:
dists/trunk/live-helper/Makefile
Log:
Ensures that .svn directories are not installed (some were ending up on livecd images)
Modified: dists/trunk/live-helper/Makefile
===================================================================
--- dists/trunk/live-helper/Makefile 2007-08-15 20:45:42 UTC (rev 2768)
+++ dists/trunk/live-helper/Makefile 2007-08-16 19:11:44 UTC (rev 2769)
@@ -20,7 +20,11 @@
# Installing shared data
mkdir -p $(DESTDIR)/usr/share/live-helper
- cp -r data examples functions hooks includes lists templates $(DESTDIR)/usr/share/live-helper
+ for FOLDER in data examples functions hooks includes lists templates; \
+ do \
+ cp -r $$FOLDER $(DESTDIR)/usr/share/live-helper; \
+ find $(DESTDIR)/usr/share/live-helper/$$FOLDER -name ".svn" -type d | xargs rm -rvf; \
+ done
# Installing documentation
mkdir -p $(DESTDIR)/usr/share/doc/live-helper
More information about the debian-live-changes
mailing list