01df2ec328
This is done since it contains much more than /bin, and also gets in the way when making a combined install+fixit CD. OK'ed by: jkh
12 lines
264 B
Bash
Executable File
12 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Move the info files out to their own dist
|
|
if [ -d ${RD}/trees/base/usr/share/info ]; then
|
|
tar -cf - -C ${RD}/trees/base/usr/share/info . |
|
|
tar -xpf - -C ${RD}/trees/info/usr/share/info &&
|
|
rm -rf ${RD}/trees/base/usr/share/info;
|
|
fi
|