[Git][cmucl/cmucl][issue-363-add-version-number] 3 commits: Remove commented-out code

Raymond Toy pushed to branch issue-363-add-version-number at cmucl / cmucl Commits: ddcbbd9c by Raymond Toy at 2025-02-09T07:04:44-08:00 Remove commented-out code This code was installing some i18n stuff and some hemlock stuff. We don't really need these. Besides they're installed when the sources are included. - - - - - 51fa29d9 by Raymond Toy at 2025-02-09T07:09:20-08:00 Remove commented-out code about po files The po files are actually installed by earlier code that installs all the locale stuff. Hence this commented out code for installing po files does nothing, even if run. Remove it. - - - - - d8c1eb8c by Raymond Toy at 2025-02-09T07:12:02-08:00 Remove unused envvar FILE that wasn't used. - - - - - 1 changed file: - bin/make-extra-dist.sh Changes: ===================================== bin/make-extra-dist.sh ===================================== @@ -108,18 +108,6 @@ do $DESTDIR/$CMUCLLIBVER/lib/subsystems/ done -# Not sure we really need these, but we'll install them in the -# ext-formats directory. (Should they go somewhere else?) -#install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/$CMUCLLIBVER/lib/ext-formats -#for f in src/i18n/NameAliases.txt src/i18n/UnicodeData.txt -#do -# echo $f -# install ${GROUP} ${OWNER} -m 0644 $f $DESTDIR/$CMUCLLIBVER/lib/ext-formats/ -#done - -# install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/$CMUCLLIBVER/lib/fonts/ -# install ${GROUP} ${OWNER} -m 0644 misc/8x13u.snf misc/fonts.dir \ -# $DESTDIR/$CMUCLLIBVER/lib/fonts/ install ${GROUP} ${OWNER} -m 0644 src/hemlock/XKeysymDB \ src/hemlock/hemlock11.cursor src/hemlock/hemlock11.mask \ $TARGET/hemlock/spell-dictionary.bin \ @@ -139,7 +127,6 @@ done for f in `(cd src/contrib; find . -type f -print | grep -v "asdf\|defsystem\|unix")` do - FILE=`basename $f` DIR=`dirname $f` install ${GROUP} ${OWNER} -m 0644 src/contrib/$f $DESTDIR/$CMUCLLIBVER/lib/contrib/$DIR done @@ -154,19 +141,10 @@ done # Install mo files. Ignore any emacs-style backup files. for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v '~.*~\|.*~')` do - FILE=`basename $f` DIR=`dirname $f` install ${GROUP} ${OWNER} -m 0644 $TARGET/i18n/$f $DESTDIR/$CMUCLLIBVER/lib/$DIR done -# Install po files. (Do we really need to distribute the po files?) -#for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v '~.*~\|.*~')` -#do -# FILE=`basename $f` -# DIR=`dirname $f` -# install ${GROUP} ${OWNER} -m 0644 $TARGET/i18n/$f $DESTDIR/$CMUCLLIBVER/lib/$DIR -#done - if [ -z "$INSTALL_DIR" ]; then sync ; sleep 1 ; sync ; sleep 1 ; sync echo Tarring extra components View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/5246214ca2a85496bb9a51c... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/5246214ca2a85496bb9a51c... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)