From mboxrd@z Thu Jan 1 00:00:00 1970
From: Pat LaVarre
Subject: use cvs udftools means what
Date: 23 Oct 2003 11:16:55 -0600
Sender: linux-fsdevel-owner@vger.kernel.org
Message-ID: <1066929415.2276.52.camel@patehci2>
Mime-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Return-path:
Received: from email-out2.iomega.com ([147.178.1.83]:15331 "EHLO
email.iomega.com") by vger.kernel.org with ESMTP id S263632AbTJWRRP
(ORCPT );
Thu, 23 Oct 2003 13:17:15 -0400
Received: from royntex01.iomegacorp.com (unknown [147.178.90.120])
by email.iomega.com (Postfix) with ESMTP id D0CBA1E66
for ; Thu, 23 Oct 2003 11:17:10 -0600 (MDT)
To: linux-fsdevel@vger.kernel.org
List-Id: linux-fsdevel.vger.kernel.org
Anybody here know how to make the cvs udftools without error?
Bonehead newbie me, I fell into at least Three revolting kluges:
1) Into the cvs udftools/ I copy configure and config/ from
udftools-1.0.0b2/.
2) Also I copy all six of the files named Makefile.in.
3) Also I begin by accepting unchanged the Makefile initially composed
by `./configure`, but then after the first try at `make` fails with the
side effect of revising the Makefile, I then reestablish a line of the
original Makefile:
-SUBDIRS = libudffs mkudffs cdrwtool pktsetup udffsck wrudf doc udfct
+SUBDIRS = libudffs mkudffs cdrwtool pktsetup doc
Pat LaVarre
----- cvsudfmake script
tar -xzf udftools-cvs.tar.gz
mv -i udftools udftools-cvs
cd udftools-1.0.0b2
cp -idpr config configure ../udftools-cvs/
f=./Makefile.in; cp -idpr $f ../udftools-cvs/$f
f=./libudffs/Makefile.in; cp -idpr $f ../udftools-cvs/$f
f=./mkudffs/Makefile.in; cp -idpr $f ../udftools-cvs/$f
f=./cdrwtool/Makefile.in; cp -idpr $f ../udftools-cvs/$f
f=./pktsetup/Makefile.in; cp -idpr $f ../udftools-cvs/$f
f=./doc/Makefile.in; cp -idpr $f ../udftools-cvs/$f
cd ../udftools-cvs
./configure
grep '^SUBDIRS =' Makefile
SUBDIRS = libudffs mkudffs cdrwtool pktsetup doc
make
grep '^SUBDIRS' Makefile
cp -ip Makefile Makefile.old
Makefile
diff -0 -u Makefile.old Makefile
make
make dist
ls -lrt *.tar.*
-----
That udftools-cvs.tar.gz you see mentioned I got thru a different
firewall via:
setenv CVSROOT :pserver:anonymous@cvs.sourceforge.net:/cvsroot/linux-udf
cvs login
cvs co udftools
cvs logout
Those four hints I got from my own "Re: Fwd: udf folders pointing to
self and above" post:
http://marc.theaimsgroup.com/?l=linux-fsdevel&m=106691164821008