summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2021-01-28 03:05:34 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2021-01-28 03:05:34 +0000
commit989dca8687efe579a236d6bfbe6df48b49734f20 (patch)
tree115921891ab7ac9c029f55e466da1c7934df8aa8
parentemulators/rpcs3: update to 0.0.14.11633 (diff)
Fix regression introduced in r545519 which resulted in the environment
become empty in the internal shell and thus confusing many programs.
Notes
Notes: svn path=/head/; revision=563108
-rw-r--r--misc/deco/Makefile2
-rw-r--r--misc/deco/files/patch-env.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/misc/deco/Makefile b/misc/deco/Makefile
index 06f11e4d0a6a..70af0d472e2f 100644
--- a/misc/deco/Makefile
+++ b/misc/deco/Makefile
@@ -3,7 +3,7 @@
PORTNAME= deco
PORTVERSION= 3.9
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= misc
MASTER_SITES= SF/${PORTNAME}/Deco%20Sources/${PORTVERSION}
PKGNAMESUFFIX= -misc
diff --git a/misc/deco/files/patch-env.h b/misc/deco/files/patch-env.h
index 0b2186767f60..ae16ed0ba03a 100644
--- a/misc/deco/files/patch-env.h
+++ b/misc/deco/files/patch-env.h
@@ -2,7 +2,7 @@
+++ env.h
@@ -1,4 +1,4 @@
-char **EnvVector;
-+static char **EnvVector;
++extern char **EnvVector;
void EnvInit (char **env);
char *EnvGet (char *name);
void EnvPut (char *name, char *value);