diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2013-03-09 22:38:52 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2013-03-09 22:38:52 +0000 |
commit | c63f9e09579ba88c4b9510ccce062fbc767fd3a6 (patch) | |
tree | a9a7f7ef5f2c1a7d84ba7034e3ed12422800ec96 /config | |
parent | fb36548704ce096310707204c77218fe4d69f069 (diff) | |
download | ocaml-c63f9e09579ba88c4b9510ccce062fbc767fd3a6.tar.gz |
fix a few problems with whitespace and over-long lines
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13393 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'config')
-rw-r--r-- | config/Makefile.mingw | 2 | ||||
-rw-r--r-- | config/Makefile.mingw64 | 2 | ||||
-rw-r--r-- | config/Makefile.msvc64 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/config/Makefile.mingw b/config/Makefile.mingw index bc6a2bce67..e77820154b 100644 --- a/config/Makefile.mingw +++ b/config/Makefile.mingw @@ -143,7 +143,7 @@ NATIVECCCOMPOPTS=-O -mms-bitfields -Wall -Wno-unused NATIVECCLINKOPTS= ### Build partially-linked object file -PACKLD=$(TOOLPREF)ld -r $(NATIVECCLINKOPTS) -o #there must be a space after this '-o' +PACKLD=$(TOOLPREF)ld -r $(NATIVECCLINKOPTS) -o # must have a space after '-o' ############# Configuration for the contributed libraries diff --git a/config/Makefile.mingw64 b/config/Makefile.mingw64 index 9afc32d9e9..4fcc25e37f 100644 --- a/config/Makefile.mingw64 +++ b/config/Makefile.mingw64 @@ -143,7 +143,7 @@ NATIVECCCOMPOPTS=-O -mms-bitfields -Wall -Wno-unused NATIVECCLINKOPTS= ### Build partially-linked object file -PACKLD=$(TOOLPREF)ld -r $(NATIVECCLINKOPTS) -o #there must be a space after this '-o' +PACKLD=$(TOOLPREF)ld -r $(NATIVECCLINKOPTS) -o # must have a space after '-o' ############# Configuration for the contributed libraries diff --git a/config/Makefile.msvc64 b/config/Makefile.msvc64 index 96e92e9312..6b97e65598 100644 --- a/config/Makefile.msvc64 +++ b/config/Makefile.msvc64 @@ -141,7 +141,7 @@ NATIVECCCOMPOPTS=/Ox /MD NATIVECCLINKOPTS= ### Build partially-linked object file -PACKLD=link /lib /nologo /machine:AMD64 /out:# there must be no space after this '/out:' +PACKLD=link /lib /nologo /machine:AMD64 /out:# must have no space after '/out:' ############# Configuration for camlp4 |