diff options
Diffstat (limited to 'nxcomp/Loop.cpp')
-rw-r--r-- | nxcomp/Loop.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nxcomp/Loop.cpp b/nxcomp/Loop.cpp index 12a858b0f..d5c8eb25d 100644 --- a/nxcomp/Loop.cpp +++ b/nxcomp/Loop.cpp @@ -8328,8 +8328,8 @@ int ParseEnvironmentOptions(const char *env, int force) cerr << "Error" << ": Can't identify 'link' option in string '" << value << "'.\n"; - - return -1; + if (ParseLinkOption("adsl") < 0) + return -1; } } else if (strcasecmp(name, "limit") == 0) @@ -8783,8 +8783,8 @@ int ParseEnvironmentOptions(const char *env, int force) cerr << "Error" << ": Can't identify pack method for string '" << value << "'.\n"; - - return -1; + if (ParsePackOption("nopack")<0) + return -1; } } else if (strcasecmp(name, "core") == 0) |