aboutsummaryrefslogtreecommitdiff
path: root/projects/coreutils
diff options
context:
space:
mode:
authorOliver Chang <oliverchang@users.noreply.github.com>2016-12-02 08:09:27 -0800
committerGitHub <noreply@github.com>2016-12-02 08:09:27 -0800
commite69a25d84b22225293bcb435e757a6c8932169c3 (patch)
tree0a8a2b3e3586640af8f1b6d3f7b863359fd6d558 /projects/coreutils
parentacb19ee42f3f0d3b81ed5b1038cb7d150cc22c6f (diff)
downloadoss-fuzz-e69a25d84b22225293bcb435e757a6c8932169c3.tar.gz
Revert "coreutils: add build script" (#123)
Diffstat (limited to 'projects/coreutils')
-rw-r--r--projects/coreutils/Dockerfile24
-rwxr-xr-xprojects/coreutils/build.sh18
-rw-r--r--projects/coreutils/project.yaml2
3 files changed, 0 insertions, 44 deletions
diff --git a/projects/coreutils/Dockerfile b/projects/coreutils/Dockerfile
deleted file mode 100644
index 1e2b8cf47..000000000
--- a/projects/coreutils/Dockerfile
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 2016 Google Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-################################################################################
-
-FROM ossfuzz/base-libfuzzer
-MAINTAINER P@draigBrady.com
-RUN apt-get install -y make autoconf automake bison gettext autopoint gperf xz-utils texinfo
-
-RUN git clone --depth 1 https://github.com/coreutils/coreutils
-RUN git clone --depth 1 https://github.com/coreutils/gnulib
-WORKDIR coreutils
-COPY build.sh $SRC/
diff --git a/projects/coreutils/build.sh b/projects/coreutils/build.sh
deleted file mode 100755
index 3121674b8..000000000
--- a/projects/coreutils/build.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-./bootstrap --gnulib-srcdir="$SRC/gnulib" --no-git --skip-po
-mkdir -p "$WORK/coreutils" && cd "$WORK/coreutils"
-
-# Hack to avoid clang bug https://llvm.org/bugs/show_bug.cgi?id=16404
-# which is triggered in xalloc_oversized() without the following
-CFLAGS="$CFLAGS -D__STRICT_ANSI__=1"
-
-# needed to allow configure run as root
-export FORCE_UNSAFE_CONFIGURE=1
-
-LIBS="-lfuzzer" "$SRC/coreutils/configure"
-
-make -j"$(nproc)" clean all
-make DESTDIR="$OUT" install-exec-am
diff --git a/projects/coreutils/project.yaml b/projects/coreutils/project.yaml
index c46056137..bda21da8f 100644
--- a/projects/coreutils/project.yaml
+++ b/projects/coreutils/project.yaml
@@ -1,4 +1,2 @@
homepage: "http://www.gnu.org/software/coreutils/"
primary_contact: "P@draigBrady.com"
-auto_ccs:
- - "coreutils@gnu.org"