Skip to content
Snippets Groups Projects
Commit 48c324f4 authored by Raymond Toy's avatar Raymond Toy
Browse files

Install the asdf docs too.

Also, install the asdf/defsystem sources before the fasls so that the
fasls have a newer timestamp than the source.
parent 64f8e6a9
No related branches found
No related tags found
No related merge requests found
...@@ -126,11 +126,11 @@ do ...@@ -126,11 +126,11 @@ do
install ${GROUP} ${OWNER} -m 0644 $f $DESTDIR/lib/cmucl/lib/ext-formats/ install ${GROUP} ${OWNER} -m 0644 $f $DESTDIR/lib/cmucl/lib/ext-formats/
done done
# Create the directories and install the fasl files for asdf and defsystem set -x
for f in asdf defsystem # Create the directories for asdf and defsystem
for f in asdf defsystem asdf/doc
do do
install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/contrib/$f install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/contrib/$f
install ${GROUP} ${OWNER} -m 0644 $TARGET/contrib/$f/$f.$FASL $DESTDIR/lib/cmucl/lib/contrib/$f
done done
# Copy the source files for asdf and defsystem # Copy the source files for asdf and defsystem
...@@ -139,6 +139,19 @@ do ...@@ -139,6 +139,19 @@ do
install ${GROUP} ${OWNER} -m 0644 src/$f $DESTDIR/lib/cmucl/lib/$f install ${GROUP} ${OWNER} -m 0644 src/$f $DESTDIR/lib/cmucl/lib/$f
done done
# Install the fasl files for asdf and defsystem
for f in asdf defsystem
do
install ${GROUP} ${OWNER} -m 0644 $TARGET/contrib/$f/$f.$FASL $DESTDIR/lib/cmucl/lib/contrib/$f
done
# Install the docs for asdf
for f in src/contrib/asdf/doc/*
do
base=`basename $f`
install ${GROUP} ${OWNER} -m 0644 $f $DESTDIR/lib/cmucl/lib/contrib/asdf/doc/$base
done
install ${GROUP} ${OWNER} -m 0644 src/general-info/cmucl.1 \ install ${GROUP} ${OWNER} -m 0644 src/general-info/cmucl.1 \
$DESTDIR/${MANDIR}/ $DESTDIR/${MANDIR}/
install ${GROUP} ${OWNER} -m 0644 src/general-info/lisp.1 \ install ${GROUP} ${OWNER} -m 0644 src/general-info/lisp.1 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment