Fixed typo in rm of /tmp/cat, it was rm /bin/cat, whoopsss....

This commit is contained in:
Rodney W. Grimes 1993-09-01 01:41:03 +00:00
parent c7e82fb0a5
commit 641c4965d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=370

View File

@ -163,7 +163,7 @@ extract()
#from there...
cp -p /bin/cat /usr/bin/gunzip /usr/bin/tar /tmp
/tmp/cat "$@"* | /tmp/gunzip | (cd / ; /tmp/tar --extract --file - --preserve-permissions ${tarverbose} )
rm -f /bin/cat /tmp/gunzip /tmp/tar
rm -f /tmp/cat /tmp/gunzip /tmp/tar
sync
}
configure()