diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1996-10-07 14:02:45 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1996-10-07 14:02:45 +0000 |
commit | ca2c3e4f73d9f54c28f34622703e29b9264ec7e2 (patch) | |
tree | b9ecf3b5c25db0040b57c7122d7f93ee2e3f6770 /configure | |
parent | 71c89842cd54ba07d4b1e9e889a87c0bb1cf2596 (diff) | |
download | ocaml-ca2c3e4f73d9f54c28f34622703e29b9264ec7e2.tar.gz |
On n'utilise plus cpp du tout.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1054 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 36 |
1 files changed, 18 insertions, 18 deletions
@@ -240,24 +240,24 @@ echo "ASPP=$aspp" >> Makefile echo "ASPPFLAGS=$asppflags" >> Makefile # Checking how to invoke cpp - -if sh ./searchpath cpp; then - cpp="cpp -P" -elif test -f /lib/cpp; then - cpp="/lib/cpp -P" -elif test -f /usr/ccs/lib/cpp; then - cpp="/usr/ccs/lib/cpp -P" -else - cpp="not found" -fi - -echo "CPP=$cpp" >> Makefile - -echo "How to invoke the C preprocessor: $cpp" - -if test "$cpp" = "not found"; then - echo "(Please edit the generated config/Makefile to set CPP correctly)" -fi +# We don't need cpp anymore +#if sh ./searchpath cpp; then +# cpp="cpp -P" +#elif test -f /lib/cpp; then +# cpp="/lib/cpp -P" +#elif test -f /usr/ccs/lib/cpp; then +# cpp="/usr/ccs/lib/cpp -P" +#else +# cpp="not found" +#fi +# +#echo "CPP=$cpp" >> Makefile +# +#echo "How to invoke the C preprocessor: $cpp" +# +#if test "$cpp" = "not found"; then +# echo "(Please edit the generated config/Makefile to set CPP correctly)" +#fi # Where is ranlib? |