Skip to content
Snippets Groups Projects
Commit 3c37dfff authored by rtoy's avatar rtoy
Browse files

Touch the fasl files for asdf and defsystem so that the object date is

newer than the source date.  This prevents warnings that the source is
newer than the object in binary distributions.
parent c3ae4ca7
No related branches found
No related tags found
No related merge requests found
...@@ -139,6 +139,17 @@ do ...@@ -139,6 +139,17 @@ 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
# Touch the fasl files for asdf and defsystem, so we don't get notes
# about the source being newer than object.
sleep 1;
touch $DESTDIR/lib/cmucl/lib/contrib/asdf/asdf.$FASL
touch $DESTDIR/lib/cmucl/lib/contrib/defsystem/defsystem.$FASL
if [ "$FASL" = "x86f" ]; then
# For x87, we want both x86f and sse2f
touch $DESTDIR/lib/cmucl/lib/contrib/asdf/asdf.x86f
touch $DESTDIR/lib/cmucl/lib/contrib/defsystem/defsystem.x86f
fi
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