Olav Reinert
bb0fc22518
- Include upstream patches + f174800.patch Generate random serial number for all certificates + 29d4dee.patch Fixes #91 basename: invalid option -- 's' + b93d0a1.patch Spelling fixes and sentence structure improvements + fb4d8d8.patch Fix comment indicating the end of the function verify_file() + b75faa4.patch Convert README and COPYING into markdown files - Rename openSUSE specific patch easyrsa.packaging.patch to easy-rsa-packaging.patch - spec-cleaner -m (Add also SUSE copyrights) OBS-URL: https://build.opensuse.org/request/show/497926 OBS-URL: https://build.opensuse.org/package/show/network:vpn/easy-rsa?expand=0&rev=3
23 lines
633 B
Diff
23 lines
633 B
Diff
From 29d4dee508706a34b50c20d338b3f2d452446716 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Szteliga <ts@websafe.pl>
|
|
Date: Mon, 21 Mar 2016 17:25:58 +0100
|
|
Subject: [PATCH] Fixes #91 basename: invalid option -- 's'.
|
|
|
|
---
|
|
build/build-dist.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/build/build-dist.sh b/build/build-dist.sh
|
|
index 2f11fb2..dca4b9a 100755
|
|
--- a/build/build-dist.sh
|
|
+++ b/build/build-dist.sh
|
|
@@ -88,7 +88,7 @@ stage_win() {
|
|
|
|
for f in `ls $SRC_ROOT/doc/*.md`;
|
|
do
|
|
- fname=`basename -s .md $f`
|
|
+ fname=`basename $f .md`
|
|
python -m markdown $f > $DIST_ROOT/windows/$PV/doc/$fname.html
|
|
done
|
|
|