This prolly get into by mistake; remove it since there is already one

without the .orig extension.
This commit is contained in:
fgsch 2001-08-03 16:13:14 +00:00
parent 9e346955fc
commit 6b83ed70de

View File

@ -1,20 +0,0 @@
$OpenBSD: patch-kcontrol_thememgr_Makefile_in.orig,v 1.1 2001/04/22 13:23:39 espie Exp $
--- kcontrol/thememgr/Makefile.in.orig Thu Mar 8 20:36:41 2001
+++ kcontrol/thememgr/Makefile.in Thu Mar 8 20:38:48 2001
@@ -643,10 +643,13 @@ maintainer-clean-generic clean mostlycle
install-data-local:
- cd $(srcdir)/Themes; \
+ rm -rf $(srcdir)/Archive; \
+ cp -rp $(srcdir)/Themes $(srcdir)/Archive; \
+ find $(srcdir)/Archive -type d -name CVS -print -prune|xargs rm -rf; \
+ cd $(srcdir)/Archive; \
for f in *; do \
- if [ -d $$f -a $$f != "CVS" ]; then \
- tar --exclude CVS -b 16 -c -f - $$f | gzip -c > $(DESTDIR)$(themesdir)/$$f.ktheme; \
+ if [ -d $$f ]; then \
+ tar -b 16 -zcf $(DESTDIR)$(themesdir)/$$f.ktheme $$f; \
fi; \
done