Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix c++-types-check conditionalization.
  • Loading branch information
Roland McGrath committed Mar 4, 2016
1 parent 97f7112 commit 00db8bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2016-03-04 Roland McGrath <roland@hack.frob.com>

* Makefile ($(objpfx)c++-types-check.out): Fix conditionalization
to test for empty $(CXX) rather than $(CXX) of "no".

2016-03-04 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/x86_64/Makefile (sysdep_noprof): Add comments.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -252,8 +252,8 @@ tests-clean:
@$(MAKE) subdir_testclean no_deps=t

tests-special += $(objpfx)c++-types-check.out $(objpfx)check-local-headers.out
ifneq ($(CXX),no)

ifneq (,$(CXX))
vpath c++-types.data $(+sysdep_dirs)

$(objpfx)c++-types-check.out: c++-types.data scripts/check-c++-types.sh
Expand Down

0 comments on commit 00db8bf

Please sign in to comment.