Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
ed54935b
Commit
ed54935b
authored
Aug 13, 2003
by
Per Cederqvist
Browse files
($(srcdir)/15.exp): Use $(PYTHON) instead of python. Use the
HAVE_PYTHON Automake conditional. ($(srcdir)/19.exp): Ditto.
parent
f6edc13d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/testsuite/lyskomd.0/Makefile.am
View file @
ed54935b
# $Id: Makefile.am,v 1.3
0
2003/08/13
13:29:35
ceder Exp $
# $Id: Makefile.am,v 1.3
1
2003/08/13
20:38:31
ceder Exp $
# Copyright (C) 2000-2002 Lysator Academic Computer Association.
#
# This file is part of the LysKOM server.
...
...
@@ -30,15 +30,21 @@ check_DATA = $(srcdir)/15.exp $(srcdir)/19.exp
$(srcdir)/15.exp
:
$(srcdir)/gen-15.py
$(RM)
$@
$@
.tmp
if
python
$^
>
$@
.tmp
;
then
echo
ok
;
\
else
echo
fail
;
echo
'unsupported "15.exp needs python"'
>
$@
.tmp
;
fi
if
HAVE_PYTHON
$(PYTHON)
$^
>
$@.tmp
else
echo
'unsupported "15.exp needs python"'
>
$@.tmp
endif
chmod
444
$@.tmp
mv
-f
$@.tmp
$@
$(srcdir)/19.exp
:
$(srcdir)/gen-19.py
$(RM)
$@
$@
.tmp
if
python
$^
>
$@
.tmp
;
then
echo
ok
;
\
else
echo
fail
;
echo
'unsupported "19.exp needs python"'
>
$@
.tmp
;
fi
if
HAVE_PYTHON
$(PYTHON)
$^
>
$@.tmp
else
echo
'unsupported "19.exp needs python"'
>
$@.tmp
endif
chmod
444
$@.tmp
mv
-f
$@.tmp
$@
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment