Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a22d9d2c
Commit
a22d9d2c
authored
May 24, 2011
by
Glenn Morris
Browse files
* Makefile.in (check): Just give a message if no test/ directory.
parent
bdd556a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
ChangeLog
ChangeLog
+2
-0
Makefile.in
Makefile.in
+5
-3
No files found.
ChangeLog
View file @
a22d9d2c
2011-05-24 Glenn Morris <rgm@gnu.org>
* Makefile.in (check): Just give a message if no test/ directory.
* configure.in: Avoid using variables inside AC_CONFIG_FILES.
* configure.in (OPT_MAKEFILES_IN): Remove.
...
...
Makefile.in
View file @
a22d9d2c
...
...
@@ -859,9 +859,11 @@ TAGS tags: lib lib-src src
check
:
@
if
test
!
-d
test
/automated
;
then
\
echo
"You do not seem to have the test/ directory."
;
exit
1
;
\
else
true
;
fi
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
check
echo
"You do not seem to have the test/ directory."
;
\
echo
"Maybe you are using a release tarfile, rather than a repository checkout."
;
\
else
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
check
;
\
fi
dist
:
cd
${srcdir}
;
./make-dist
...
...
Write
Preview
Markdown
is supported
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