author | Camm Maguire <camm@debian.org> | 2004年08月05日 22:49:39 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2004年08月05日 22:49:39 +0000 |
commit | fc69911a91cd348a23a245d285a0e8f4058c9fc8 (patch) | |
tree | e1a4830921c78c7a47d478a6310dd5d28f04dab7 | |
parent | ff1590565532db4584cc6849a3790574526d5b0e (diff) | |
download | gcl-fc69911a91cd348a23a245d285a0e8f4058c9fc8.tar.gz |
-rw-r--r-- | gcl/debian/changelog | 3 | ||||
-rw-r--r-- | gcl/makefile | 5 |
diff --git a/gcl/debian/changelog b/gcl/debian/changelog index 5ee59399d..2423bbf6f 100644 --- a/gcl/debian/changelog +++ b/gcl/debian/changelog @@ -17,8 +17,9 @@ gcl (2.6.4-1) unstable; urgency=low * reset-sys-paths lisp function for moving image installation directories, show profiling support in banner if present * Fix typo in sys docs + * reset sys paths on installation - -- Camm Maguire <camm@enhanced.com> Thu, 5 Aug 2004 22:48:01 +0000 + -- Camm Maguire <camm@enhanced.com> Thu, 5 Aug 2004 22:48:56 +0000 gcl (2.6.3-1) unstable; urgency=high diff --git a/gcl/makefile b/gcl/makefile index f44283c51..ece007c95 100644 --- a/gcl/makefile +++ b/gcl/makefile @@ -173,7 +173,8 @@ install1: if gcc --version | grep -i mingw >/dev/null 2>&1 ; then if grep -i oncrpc makedefs >/dev/null 2>&1 ; then cp /mingw/bin/oncrpc.dll $(DESTDIR)$(INSTALL_LIB_DIR)/$(PORTDIR); fi ; fi cd $(DESTDIR)$(INSTALL_LIB_DIR)/$(PORTDIR) && \ mv $(FLISP)$(EXE) temp$(EXE) && \ - echo "(setq si::*system-directory* \"$(INSTALL_LIB_DIR)/$(PORTDIR)\")(si::save-system \"$(FLISP)$(EXE)\")" | ./temp$(EXE) && \ + echo '(reset-sys-paths "$(INSTALL_LIB_DIR)/")\ + (si::save-system "$(FLISP)$(EXE)")' | ./temp$(EXE) && \ rm -f temp$(EXE) if [ -e "unixport/rsym$(EXE)" ] ; then cp unixport/rsym$(EXE) $(DESTDIR)$(INSTALL_LIB_DIR)/unixport/ ; fi # ln $(SYMB) $(INSTALL_LIB_DIR)/$(PORTDIR)/$(FLISP)$(EXE) \ @@ -217,7 +218,7 @@ gclclean: windows/install.lsp windows/sysdir.bat rm -rf windows/Output rm -f ansi-tests/test_results ansi-tests/gazonk*lsp - rm -f config.log config.cache config.status tmpx + rm -f config.log config.cache config.status tmpx $(PORTDIR)/gmon.out clean: gclclean -(cd $(GMPDIR) ; $(MAKE) distclean) |