Skip to content

Commit 722491e

Browse files
authored
pffft: fix broken build (google#14776)
In the Dockerfile, when the COPY instruction is used to copy multiple files, the target path $SRC lacks the trailing slash /. This results in a syntax error. The solution is to add a slash at the end of the target path.
1 parent 24a5c10 commit 722491e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/pffft/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y mercurial
1919
RUN python -m pip install numpy
2020
RUN git clone https://bitbucket.org/jpommier/pffft $SRC/pffft
2121
WORKDIR pffft
22-
COPY run_tests.sh build.sh $SRC
22+
COPY run_tests.sh build.sh $SRC/
2323
# TODO(alessiob): Move the fuzzing source code to pffft upstream.
2424
COPY generate_seed_corpus.py $SRC/pffft
2525
COPY pffft_fuzzer.cc $SRC/pffft

0 commit comments

Comments
 (0)