
Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl Commits: 3f5a8297 by Raymond Toy at 2025-02-07T16:01:26-08:00 Install symlink for manpages Need to symlink lisp.1 and cmucl.1 manpage to the versioned files. - - - - - 1 changed file: - bin/make-main-dist.sh Changes: ===================================== bin/make-main-dist.sh ===================================== @@ -142,6 +142,10 @@ install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/${MANDIR} install ${GROUP} ${OWNER} -m 0755 $TARGET/lisp/lisp $DESTDIR/bin/lisp-$VERSION # Install symlink for lisp (cd $DESTDIR/bin; ln -fs lisp-$VERSION lisp) +# Install symlink for man pages +(cd $DESTDIR/${MANDIR} + ln -fs lisp-$VERSION.1 lisp.1 + ln -fs cmucl-$VERSION.1 cmucl.1) if [ "$EXECUTABLE" = "true" ] then View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/3f5a8297378794133e3239dc... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/3f5a8297378794133e3239dc... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)