diff options
author | Pierre Weis <Pierre.Weis@inria.fr> | 2001-08-30 10:11:51 +0000 |
---|---|---|
committer | Pierre Weis <Pierre.Weis@inria.fr> | 2001-08-30 10:11:51 +0000 |
commit | 5363b23724f741cd0ea65c586772da41ef72f8fa (patch) | |
tree | d0c8a4a0204e1663f807ef28e5d56e609f8678e0 | |
parent | 9fd494d1bab4aed2d56c3bd4410f802c03a4f5a2 (diff) |
Utiliser des double quotes au lieu de simple quotes, car MKSHAREDLIB peut contenir des simple quotes, e.g. sous DUnix
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3684 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | tools/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/Makefile b/tools/Makefile index eeb2a9f0b..6ac4ca5a7 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -76,10 +76,10 @@ clean:: # To help building mixed-mode libraries (Caml + C) ocamlmklib: ocamlmklib.tpl ../config/Makefile - sed -e 's|%%BINDIR%%|$(BINDIR)|' \ - -e 's|%%SUPPORTS_SHARED_LIBRARIES%%|$(SUPPORTS_SHARED_LIBRARIES)|' \ - -e 's|%%MKSHAREDLIB%%|$(MKSHAREDLIB)|' \ - -e 's|%%RANLIB%%|$(RANLIB)|' \ + sed -e "s|%%BINDIR%%|$(BINDIR)|" \ + -e "s|%%SUPPORTS_SHARED_LIBRARIES%%|$(SUPPORTS_SHARED_LIBRARIES)|" \ + -e "s|%%MKSHAREDLIB%%|$(MKSHAREDLIB)|" \ + -e "s|%%RANLIB%%|$(RANLIB)|" \ ocamlmklib.tpl > ocamlmklib chmod +x ocamlmklib |