fix(configure): Prevent pulling in unnecessary vars

This commit is contained in:
Janne Heß
2023-01-11 18:12:12 +01:00
parent 842fa97d37
commit b223fe0b86

2
configure vendored
View File

@@ -313,7 +313,7 @@ genConfigMake() {
cfgwrite "# GNUstep environment variables:";
cfgwrite "GNUSTEP_INSTALLATION_DOMAIN=$GNUSTEP_INSTALLATION_DOMAIN"
for i in `env | grep GNUSTEP_ | sort`; do
for i in `env | grep ^GNUSTEP_ | sort`; do
MAKE_ASSI="`echo $i | sed s/=/:=/`"
cfgwrite "${MAKE_ASSI}";
done