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

Install the appropriate compiled unix file.

parent e549b338
No related branches found
No related tags found
No related merge requests found
......@@ -127,12 +127,21 @@ do
done
# Create the directories and install the fasl files for asdf and defsystem
for f in asdf defsystem unix
for f in asdf defsystem
do
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
set -x
case `uname -s` in
Linux*) UCONTRIB="unix-glibc2" ;;
*) UCONTRIB="unix" ;;
esac
install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/contrib/unix
install ${GROUP} ${OWNER} -m 0644 $TARGET/contrib/unix/$UCONTRIB.$FASL $DESTDIR/lib/cmucl/lib/contrib/unix
# Copy the source files for asdf and defsystem
for f in `(cd src; find contrib/asdf contrib/defsystem -type f -print | grep -v CVS)`
do
......
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