diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-14 16:04:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-14 16:04:55 +0000 |
commit | 5a7622a60aa7898eb4ddecfe70c196bc20124d24 (patch) | |
tree | 937d4cafb28e0be9e3f13304085c10e6b9258a96 /distrib/alpha/ramdisk/list | |
parent | 8ce22c7ef6b96d82e0eb724558a096cdd1eca521 (diff) |
Strip comments from install.* when installing on floppy.
Saves much needed space.
Diffstat (limited to 'distrib/alpha/ramdisk/list')
-rw-r--r-- | distrib/alpha/ramdisk/list | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/distrib/alpha/ramdisk/list b/distrib/alpha/ramdisk/list index d2b6ac77c32..ed242fbd0cb 100644 --- a/distrib/alpha/ramdisk/list +++ b/distrib/alpha/ramdisk/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.2 1997/05/11 03:54:27 millert Exp $ +# $OpenBSD: list,v 1.3 1997/05/14 16:04:54 millert Exp $ # the disktab explanation file COPY disktab.preinstall etc @@ -7,9 +7,10 @@ COPY disktab.preinstall etc #LINK sbin/init usr/bin/vi COPY dot.profile .profile COPY dot.instutils .instutils -COPY install.md install.md -COPY ${CURDIR}/../../miniroot/install.sh install COPY disktab.shadow etc/disktab.shadow -SPECIAL sed "/^VERSION=/s/=.*/=${REV}/" < ${CURDIR}/../../miniroot/install.sub > install.sub +# strip comments from install scripts since we need the space +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 SPECIAL chmod 755 install |