You are missing the deltadump.c file in src/s3ql. You have two options:

(a) do not directly use the git versions of S3QL but install via the
releases: https://github.com/s3ql/s3ql/releases/tag/release-3.5.0  these
files include the deltadump.c file. Remove the line
CFLAGS=$MY_CFLAGS python3 setup.py build_cython
from your install script.

(b) Install Cython ( https://cython.org/ ) and then the two lines of
your compile script
CFLAGS=$MY_CFLAGS python3 setup.py build_cython
CFLAGS=$MY_CFLAGS python3 setup.py build_ext  --inplace
actually can do what they are suppose to do.


Again, do add a a "set -e" as second line of your script (see my first
message on what that does). 

This
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive

will become
#!/bin/bash
set -e
export DEBIAN_FRONTEND=noninteractive



-- 
You received this message because you are subscribed to the Google Groups 
"s3ql" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to s3ql+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/s3ql/7e37efbe-e8c0-cb54-3926-5e254a5163a8%40jagszent.de.

Reply via email to