diff options
author | Jim Meyering <meyering@redhat.com> | 2010-03-20 13:45:56 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-03-20 13:45:56 +0100 |
commit | 9f793def3cb20567666ce05d8bf570e1fdef1f76 (patch) | |
tree | a9ced40a979ae52b61c466a44483dae0962625a2 | |
parent | 628a5e16ddd28110c506f34667ef993d9be7b837 (diff) | |
download | coreutils-9f793def3cb20567666ce05d8bf570e1fdef1f76.tar.xz |
cfg.mk: fix copy-paste-o in a diagnostic
* cfg.mk (sc_space_before_open_paren): Mention cpp -fpreprocessed,
not cppi, when cpp -fpreprocessed doesn't work.
Spotted by Eric Blake.
-rw-r--r-- | cfg.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -279,7 +279,8 @@ sc_space_before_open_paren: { echo '$(ME): the above files lack a space-before-open-paren' \ 1>&2; exit 1; } || :; \ else \ - echo '$(ME): skipping test $@: cppi not installed' 1>&2; \ + echo '$(ME): skipping test $@: cpp -fpreprocessed does not work' \ + 1>&2; \ fi; \ else :; \ fi |