Skip to content
Snippets Groups Projects
Commit 60464668 authored by sven.panne@aedion.de's avatar sven.panne@aedion.de
Browse files

[project @ 1999-12-07 13:04:31 by panne]

OK, don't say you haven't been warned: Sven "Larry W." Panne waved his
Perl-wand and changed a / / into /\s+/. This fixes the problem with
multiple spaces between {-# OPTIONS ... -#}, but still fails miserably
when quotes are used, e.g. {-# OPTIONS -#include "My Own Header.h" #-}.
parent dbce0191
No related merge requests found
......@@ -434,7 +434,7 @@ sub slurp_file_for_imports {
if ($options ne "") {
@Old_Syslibs=@Syslibs;
$ProcessingOptions=1;
&mangle_command_line_args(split(/ /,$options));
&mangle_command_line_args(split(/\s+/,$options));
if (@Old_Syslibs ne @Syslibs) {
$found_options=1;
@Old_Ignore_dirs = @Ignore_dirs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment