diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2020-09-02 17:01:38 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2020-09-02 17:01:38 +0000 |
commit | 01d725c9a0077fda974f5d609341f38785b8d6c0 (patch) | |
tree | 81ebed3f11e0a30680a11c7706d354dfe49611ce /security/beid/files/patch-scripts_build-aux_genver.sh | |
parent | textproc/py-towncrier: Fix WWW (diff) |
Update to 5.0.8 and fix the location of the Firefox plugin for recent
versions of Firefox.
PINs are now requested using pinentry.
Notes
Notes:
svn path=/head/; revision=547369
Diffstat (limited to 'security/beid/files/patch-scripts_build-aux_genver.sh')
-rw-r--r-- | security/beid/files/patch-scripts_build-aux_genver.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/security/beid/files/patch-scripts_build-aux_genver.sh b/security/beid/files/patch-scripts_build-aux_genver.sh deleted file mode 100644 index 9ab9c47a3469..000000000000 --- a/security/beid/files/patch-scripts_build-aux_genver.sh +++ /dev/null @@ -1,16 +0,0 @@ ---- scripts/build-aux/genver.sh.orig 2017-10-27 12:42:43 UTC -+++ scripts/build-aux/genver.sh -@@ -1,11 +1,11 @@ - #!/bin/sh - --GITDESC=$(git describe --dirty|sed -e 's/-/./g' 2>/dev/null) -+GITDESC=$(git describe --dirty 2>/dev/null | sed -e 's/-/./g') - VERCLEAN=$(echo $GITDESC|sed -Ee 's/^.*v([0-9]+\.[0-9]+(\.[0-9]+|bp)).*$/\1/') - - GITDESC="$VERCLEAN-$GITDESC" - --if [ -z "$GITDESC" ]; then -+if [ "$GITDESC" = "-" ]; then - if [ -f ".version" ]; then - GITDESC=$(cat .version) - else |