pre-inst-env.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/bin/sh
  2. # Joy -- implementation of the Joy programming language
  3. # Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
  4. #
  5. # Joy is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU General Public License as published by the Free
  7. # Software Foundation; either version 3 of the License, or (at your
  8. # option) any later version.
  9. #
  10. # Joy is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  13. # License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with Joy. If not, see <http://www.gnu.org/licenses/>.
  17. # Usage: ./pre-inst-env COMMAND ARG...
  18. #
  19. # Run COMMAND in a pre-installation environment. Typical use is
  20. # "./pre-inst-env joy hello.joy".
  21. abs_top_srcdir="`cd "@abs_top_srcdir@" > /dev/null; pwd -P`"
  22. abs_top_builddir="`cd "@abs_top_builddir@" > /dev/null; pwd -P`"
  23. GUILE_LOAD_COMPILED_PATH="$abs_top_builddir:$abs_top_builddir${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH"
  24. GUILE_LOAD_PATH="$abs_top_builddir:$abs_top_srcdir:$abs_top_srcdir/lib/joy:${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH"
  25. export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH
  26. # Define $PATH so that `joy' and friends are easily found.
  27. PATH="$abs_top_builddir/scripts:$abs_top_builddir${PATH:+:}$PATH" export PATH
  28. # Define $JOY_UNINSTALLED to prevent `joy' from
  29. # prepending @guilemoduledir@ to the Guile load paths.
  30. JOY_UNINSTALLED=1
  31. export JOY_UNINSTALLED
  32. exec "$@"