Browse Source

Remove unneeded -w0 option from base64 call

tags/1.1
Timo Röhling 10 years ago
parent
commit
2bdfca0268
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      postinstall.cmake.in

+ 1
- 1
postinstall.cmake.in View File

@@ -30,7 +30,7 @@ if(GENERATE_SRS_SECRET AND DD AND BASE64 AND EXISTS "/dev/urandom" AND NOT EXIST
30 30
 	message(STATUS "Generating secret key")
31 31
 	execute_process(
32 32
 		COMMAND ${DD} if=/dev/urandom bs=18 count=1
33
-		COMMAND ${BASE64} -w0
33
+		COMMAND ${BASE64}
34 34
 		OUTPUT_FILE "@CMAKE_CURRENT_BINARY_DIR@/${SECRET_FILE}"
35 35
 		ERROR_QUIET
36 36
 		OUTPUT_STRIP_TRAILING_WHITESPACE

Loading…
Cancel
Save