Reformat the CFLAG string so it can be made part of a C string.
authorRichard Levitte <levitte@openssl.org>
Thu, 30 May 2002 18:07:30 +0000 (18:07 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 30 May 2002 18:07:30 +0000 (18:07 +0000)
Incidently, this works pretty well on the command line as well.
PR: 52

Configure
crypto/Makefile.ssl

index bc4f9a9bd0d32e1c922a18bdc5e16fc36ae6b096..5ebff785a9d06fd9911d36cb60422efb0cd459a7 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -900,6 +900,10 @@ if ($rmd160_obj =~ /\.o$/)
        $cflags.=" -DRMD160_ASM";
        }
 
+# "Stringify" the C flags string.  This permits it to be made part of a string
+# and works as well on command lines.
+$cflags =~ s/([\\\"])/\\\1/g;
+
 my $version = "unknown";
 my $major = "unknown";
 my $minor = "unknown";
index 30f929a182a89df36930206afa70918fa617d286..3bdca28b0061f8f5a6dd73d0dc2022256b4b5389 100644 (file)
@@ -51,11 +51,11 @@ all: buildinf.h lib subdirs
 
 buildinf.h: ../Makefile.ssl
        ( echo "#ifndef MK1MF_BUILD"; \
-       echo "  /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \
-       echo "  #define CFLAGS \"$(CC) $(CFLAG)\""; \
-       echo "  #define PLATFORM \"$(PLATFORM)\""; \
+       echo '  /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */'; \
+       echo '  #define CFLAGS "$(CC) $(CFLAG)"'; \
+       echo '  #define PLATFORM "$(PLATFORM)"'; \
        echo "  #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
-       echo "#endif" ) >buildinf.h
+       echo '#endif' ) >buildinf.h
 
 testapps:
        if echo ${SDIRS} | fgrep ' des '; \