Changeset 64f32c7 in git


Ignore:
Timestamp:
Apr 20, 1998, 5:07:27 PM (25 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
53a2286dcf84c26398946a9e15b8e7ae21d6f144
Parents:
365819b7d885a4cbf318e09a20d2ae8dce0b45a4
Message:
	* configure.in (MKINSTALLDIRS, MAKEHEADER): instead of using an
	  absolute path, use relativ path and our own variables
	  `FACTORY_MKINSTALLDIRS' and `FACTORY_MAKEHEADER'.  Do not use
	  cache to get the variables' values.


git-svn-id: file:///usr/local/Singular/svn/trunk@1400 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/configure.in

    r365819b r64f32c7  
    11dnl # emacs edit mode for this file is -*- sh -*-
    2 dnl # $Id: configure.in,v 1.18 1998-02-05 15:56:45 schmidt Exp $
     2dnl # $Id: configure.in,v 1.19 1998-04-20 15:07:27 schmidt Exp $
    33
    44dnl #
     
    1313# - initialisation.
    1414#
    15 AC_REVISION($Id: configure.in,v 1.18 1998-02-05 15:56:45 schmidt Exp $)
     15AC_REVISION($Id: configure.in,v 1.19 1998-04-20 15:07:27 schmidt Exp $)
    1616AC_INIT(canonicalform.cc)
    1717AC_CONFIG_HEADER(config.h)
     
    154154AC_CHECK_PROG(BISON, bison, bison, where-is-your-bison)
    155155
    156 # get absolute path of srcdir to avoid some funny problems when
    157 # feeding our results to other peoples configure via cache
    158 if echo "$srcdir" | grep '^/' > /dev/null 2> /dev/null; then
    159   abssrcdir="$srcdir"
    160 else
    161   abssrcdir="`pwd`/$srcdir"
    162 fi
    163 AC_PATH_PROG(MKINSTALLDIRS, mkinstalldirs, -mkdir, $PATH:$abssrcdir/bin)
    164 AC_PATH_PROG(MAKEHEADER, makeheader, , $abssrcdir/bin:$PATH)
     156# do not use `MKINSTALLDIRS' and `MAKEHEADER' since there may be
     157# name clashes with other peoples configure scripts via
     158# `config.cache'.  Furthermore, we do not use cache at all to
     159# avoid some nasty problems with our own development environment.
     160unset ac_cv_path_FACTORY_MKINSTALLDIRS
     161unset ac_cv_path_FACTORY_MAKEHEADER
     162AC_PATH_PROG(FACTORY_MKINSTALLDIRS, mkinstalldirs, -mkdir, $PATH:$srcdir/bin)
     163AC_PATH_PROG(FACTORY_MAKEHEADER, makeheader, , $srcdir/bin:$PATH)
    165164
    166165#
Note: See TracChangeset for help on using the changeset viewer.