diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-10 00:39:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-10 00:39:07 +0000 |
commit | 7e9c5aa542e56eb321cdb0f8cd4c92b204456582 (patch) | |
tree | cca4589aa11cde98079ada014e302a51ada47087 /distrib | |
parent | e3c98cfe334e25ded37421ea83a93a8b1ae5df20 (diff) |
More comment stripping to squeeze a few more bytes...
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/alpha/ramdisk/list | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/distrib/alpha/ramdisk/list b/distrib/alpha/ramdisk/list index ed242fbd0cb..f2e3b9ce6bd 100644 --- a/distrib/alpha/ramdisk/list +++ b/distrib/alpha/ramdisk/list @@ -1,15 +1,14 @@ -# $OpenBSD: list,v 1.3 1997/05/14 16:04:54 millert Exp $ +# $OpenBSD: list,v 1.4 1997/07/10 00:39:06 millert Exp $ + +# we strip comments from files since we need the space... # the disktab explanation file -COPY disktab.preinstall etc +SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/disktab.preinstall > etc/disktab.preinstall # and the installation tools -#LINK sbin/init usr/bin/vi -COPY dot.profile .profile -COPY dot.instutils .instutils -COPY disktab.shadow etc/disktab.shadow - -# strip comments from install scripts since we need the space +SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/dot.profile > dot.profile +SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/dot.instutils > dot.instutils +SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/disktab.shadow > etc/disktab.shadow SPECIAL sed -e "/^VERSION=/s/=.*/=${REV}/" -e '/^#[ ].*$/d' < ${CURDIR}/../../miniroot/install.sub > install.sub SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/../../miniroot/install.sh > install SPECIAL sed -e '/^#[ ].*$/d' < ${CURDIR}/install.md > install.md |