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
+1 -1
View File
@@ -163,7 +163,7 @@ extract()
#from there... #from there...
cp -p /bin/cat /usr/bin/gunzip /usr/bin/tar /tmp cp -p /bin/cat /usr/bin/gunzip /usr/bin/tar /tmp
/tmp/cat "$@"* | /tmp/gunzip | (cd / ; /tmp/tar --extract --file - --preserve-permissions ${tarverbose} ) /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 sync
} }
configure() configure()