pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1997-04-01
1997-04-01 00:42:51 by Henrik Grubbström (Grubba) <grubba@grubba.org>
ea24068d1238397e9914f25d20bc958a2c423ea2 (
15
lines) (+
14
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Now tries to convert srcdir to an absolute path.
Rev: src/configure.in:1.66
1:
-
AC_REVISION("$Id: configure.in,v 1.
65
1997/
03
/
25
02
:
04
:
00
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
66
1997/
04
/
01
00
:
42
:
51
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
-
+
# We want an absolute path to the source-dir.
+
case "$srcdir" in
+
/*)
+
;;
+
*)
+
oldsrcdir="$srcdir"
+
srcdir="`cd \"$srcdir\";pwd`"
+
AC_MSG_WARN([ Converted $oldsrcdir to $srcdir,
+
If this does not work, please use an absolute path to the configure script. ])
+
;;
+
esac
+
if test "x${CFLAGS-}" = x ; then cflags_is_set=no else