Bug 35354

Summary: [PATCH] Makefile fix for CVS exclusion.
Product: [Retired] Red Hat Linux Reporter: Stelian Pop <stelian>
Component: survival-cdAssignee: Bernhard Rosenkraenzer <bero>
Status: CLOSED RAWHIDE QA Contact: Bernhard Rosenkraenzer <bero>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.1   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2001-04-09 15:03:19 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Stelian Pop 2001-04-09 14:59:04 UTC
Small fix for a cleaner tarball:

[root@biwa rescue-cd]# diff Makefile.orig Makefile
12,13c12,13
< 	find . -name CVS -type d >../resc.excl && cd .. && tar -X resc.excl -cjf
rescue-cd-${VERSION}.tar.bz2 rescue-cd 
< 	rm -f resc.excl
---
> 	cd .. && find rescue-cd -name CVS -type d >resc.excl && tar -X resc.excl
-cjf rescue-cd-${VERSION}.tar.bz2 rescue-cd 
> 	rm -f ../resc.excl

Stelian.

Comment 1 Bernhard Rosenkraenzer 2001-04-15 20:39:16 UTC
Thanks, fixed in CVS