This will let us know if the target file is not what we expect. Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
11 lines
307 B
Bash
Executable file
11 lines
307 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
SITE_PACKAGES=`python3 -Ic "from distutils.sysconfig import get_python_lib; print(get_python_lib())"`
|
|
|
|
set -x
|
|
|
|
cp -afv ipsilon ${ROOT}${SITE_PACKAGES}/
|
|
cat openid-server.patch | patch -p0 --fuzz 0 -d ${ROOT}${SITE_PACKAGES}/
|
|
python3 -m compileall ${ROOT}${SITE_PACKAGES}/{ipsilon,openid}
|