96adc99aa4
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/gnutls#6b130b528abcdb4eed61a78ca9e9d7f8dc89d0ec
16 lines
228 B
Bash
Executable File
16 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
|
|
if [ "$1" = "-e" ] ; then
|
|
CMD="cat < /dev/null >"
|
|
else
|
|
CMD="rm -f"
|
|
fi
|
|
|
|
# SRP
|
|
for f in auth/srp_sb64.c auth/srp_passwd.c auth/srp_rsa.c \
|
|
srp.c auth/srp.c ext/srp.c ; do
|
|
eval "$CMD lib/$f"
|
|
done
|
|
|