Forgot to remove a patch, spotted by naddy@

This commit is contained in:
rsadowski 2020-08-17 04:22:22 +00:00
parent 84ee61ea1c
commit 78a39197de
2 changed files with 2 additions and 17 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.30 2020/08/15 20:45:05 rsadowski Exp $
# $OpenBSD: Makefile,v 1.31 2020/08/17 04:22:22 rsadowski Exp $
COMMENT= Python IDE based on IntelliJ IDEA
@ -6,6 +6,7 @@ V= 2020.2
DISTNAME= pycharm-community-${V}
PKGNAME= pycharm-${V}
CATEGORIES= devel
REVISION= 0
HOMEPAGE= https://www.jetbrains.com/pycharm/

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-bin_pycharm_sh,v 1.2 2019/08/07 06:02:31 rsadowski Exp $
Avoid "egrep: -: No such file or directory" issue
Index: bin/pycharm.sh
--- bin/pycharm.sh.orig
+++ bin/pycharm.sh
@@ -180,7 +180,7 @@ fi
VM_OPTIONS=""
if [ -r "$VM_OPTIONS_FILE" ]; then
VM_OPTIONS=$("$CAT" "$VM_OPTIONS_FILE" | "$GREP" -v "^#.*")
- if { echo "$VM_OPTIONS" | "$GREP" -q "agentlib:yjpagent" - ; }; then
+ if { echo "$VM_OPTIONS" | "$GREP" -q "agentlib:yjpagent"; }; then
if [ "$OS_TYPE" = "Linux" ]; then
VM_OPTIONS=$(echo "$VM_OPTIONS" | "$SED" -e "s|-agentlib:yjpagent\(-linux\)\?\([^=]*\)|-agentpath:$IDE_BIN_HOME/libyjpagent-linux\2.so|")
else