Commit 63d66aaceaddf7ede9f9f42cc35ed641f62ddb3b

Timothy Gu 2014-01-20T03:09:20

Silences "echo ignoring *"

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/configure b/configure
index 00f7043..8b991ee 100755
--- a/configure
+++ b/configure
@@ -155,14 +155,14 @@ if enabled msvc; then
 fi
 
 if ! enabled stripping; then
-    strip="echo ignoring strip"
+    strip="@echo ignoring strip"
 fi
 
 if enabled shared; then
     lib /? > /dev/null 2>&1 /dev/null && enable msvc || disable msvc
 fi
 
-enabled msvc && libcmd="lib" || libcmd="echo ignoring lib"
+enabled msvc && libcmd="lib" || libcmd="@echo ignoring lib"
 
 echo "# Automatically generated by configure" > config.mak
 echo "prefix=$prefix" >> config.mak