ccache: 4.6.3 -> 4.7
This commit is contained in:
parent
88eab1e431
commit
e56980b08c
2 changed files with 8 additions and 12 deletions
|
@ -15,13 +15,13 @@
|
||||||
|
|
||||||
let ccache = stdenv.mkDerivation rec {
|
let ccache = stdenv.mkDerivation rec {
|
||||||
pname = "ccache";
|
pname = "ccache";
|
||||||
version = "4.6.3";
|
version = "4.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-uMGM3YW85wgJFin9IGrKafOkSLmN5/q/LP1sttN7/u0=";
|
sha256 = "sha256-Aqk8ukynXHXHieaI/5K5Wfh5ghpe1yfNtZHeXs7kn1I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
diff --git a/test/run b/test/run
|
|
||||||
index 9623e49d..3df1c5a8 100755
|
|
||||||
--- a/test/run
|
--- a/test/run
|
||||||
+++ b/test/run
|
+++ b/test/run
|
||||||
@@ -126,23 +126,17 @@ file_size() {
|
@@ -148,21 +148,17 @@ file_size() {
|
||||||
objdump_cmd() {
|
objdump_cmd() {
|
||||||
local file="$1"
|
local file="$1"
|
||||||
|
|
||||||
|
@ -22,10 +20,8 @@ index 9623e49d..3df1c5a8 100755
|
||||||
objdump_grep_cmd() {
|
objdump_grep_cmd() {
|
||||||
- if $HOST_OS_APPLE; then
|
- if $HOST_OS_APPLE; then
|
||||||
- fgrep -q "\"$1\""
|
- fgrep -q "\"$1\""
|
||||||
- else
|
- elif $HOST_OS_WINDOWS || $HOST_OS_CYGWIN; then
|
||||||
- fgrep -q ": $1"
|
+ if $HOST_OS_WINDOWS || $HOST_OS_CYGWIN; then
|
||||||
- fi
|
fgrep -q "$1"
|
||||||
+ fgrep -q ": $1"
|
else
|
||||||
}
|
fgrep -q ": $1"
|
||||||
|
|
||||||
expect_stat() {
|
|
||||||
|
|
Loading…
Reference in a new issue