Yeesh! Some of this stuff I yanked out of the makefiles without

reviewing closely enough (and, as a result, proflibs and dict suffered).
Fix.
This commit is contained in:
Jordan K. Hubbard 1997-06-24 21:53:33 +00:00
parent 030d3ce62a
commit bcd1c7cec0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=26904
2 changed files with 4 additions and 4 deletions

View file

@ -8,8 +8,8 @@ if [ -d ${RD}/trees/bin/usr/share/dict ]; then
fi
for i in airport birthtoken flowers na.phone zipcodes; do
if [ -f ${RD}/trees/bin/usr/share/misc/$$i ]; then
mv ${RD}/trees/bin/usr/share/misc/$$i
if [ -f ${RD}/trees/bin/usr/share/misc/$i ]; then
mv ${RD}/trees/bin/usr/share/misc/$i
${RD}/trees/dict/usr/share/misc;
fi;
done

View file

@ -2,7 +2,7 @@
# Move the profiled libraries out to their own dist
for i in ${RD}/trees/bin/usr/lib/*_p.a; do
if [ -f $$i ]; then
mv $$i ${RD}/trees/proflibs/usr/lib;
if [ -f $i ]; then
mv $i ${RD}/trees/proflibs/usr/lib;
fi;
done