1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-06 20:20:20 +02:00

rename psyntax.ss to psyntax.scm to hack around makefile foo

* ice-9/Makefile.am (SOURCES):
* ice-9/syncase.scm:
* ice-9/psyntax.scm: Renamve psyntax.ss to psyntax.scm. This way the
  guilec rules won't delete it on a make clean. Doh!
This commit is contained in:
Andy Wingo 2008-09-26 17:35:37 +02:00
parent 7ff017002d
commit 696a761f96
3 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ SOURCES = psyntax-pp.scm boot-9.scm \
format.scm getopt-long.scm hcons.scm i18n.scm \ format.scm getopt-long.scm hcons.scm i18n.scm \
lineio.scm ls.scm mapping.scm \ lineio.scm ls.scm mapping.scm \
networking.scm null.scm optargs.scm poe.scm popen.scm \ networking.scm null.scm optargs.scm poe.scm popen.scm \
posix.scm psyntax.ss q.scm r4rs.scm r5rs.scm \ posix.scm psyntax.scm q.scm r4rs.scm r5rs.scm \
rdelim.scm receive.scm regex.scm runq.scm rw.scm \ rdelim.scm receive.scm regex.scm runq.scm rw.scm \
safe-r5rs.scm safe.scm session.scm slib.scm stack-catch.scm \ safe-r5rs.scm safe.scm session.scm slib.scm stack-catch.scm \
streams.scm string-fun.scm syncase.scm threads.scm \ streams.scm string-fun.scm syncase.scm threads.scm \
@ -68,7 +68,7 @@ if MAINTAINER_MODE
# In other words, to bootstrap this file, you need to do something like: # In other words, to bootstrap this file, you need to do something like:
# GUILE_LOAD_PATH=/usr/local/share/guile/1.5.4 make psyntax-pp.scm # GUILE_LOAD_PATH=/usr/local/share/guile/1.5.4 make psyntax-pp.scm
include $(top_srcdir)/am/pre-inst-guile include $(top_srcdir)/am/pre-inst-guile
psyntax-pp.scm: psyntax.ss psyntax-pp.scm: psyntax.scm
$(preinstguile) -s $(srcdir)/compile-psyntax.scm \ $(preinstguile) -s $(srcdir)/compile-psyntax.scm \
$(srcdir)/psyntax.ss $(srcdir)/psyntax-pp.scm $(srcdir)/psyntax.scm $(srcdir)/psyntax-pp.scm
endif endif

View file

@ -213,7 +213,7 @@
;;; The following lines are necessary only if we start making changes ;;; The following lines are necessary only if we start making changes
;; (use-syntax sc-expand) ;; (use-syntax sc-expand)
;; (load-from-path "ice-9/psyntax.ss") ;; (load-from-path "ice-9/psyntax")
(define internal-eval (nested-ref the-scm-module '(%app modules guile eval))) (define internal-eval (nested-ref the-scm-module '(%app modules guile eval)))