diff options
author | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2007-11-30 10:43:57 +0100 |
---|---|---|
committer | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2007-11-30 10:43:57 +0100 |
commit | 088bf6be531eef1d591e645056a6b3db7d6a439e (patch) | |
tree | 612058bb04cf5646774f1380d2f390d12ddb4024 | |
parent | 149c5a18784979fe6c5e2f0722612463ae921bd8 (diff) |
Return empty list if no linkable includes found.
-rw-r--r-- | lib/LXRng/Lang/Generic.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/LXRng/Lang/Generic.pm b/lib/LXRng/Lang/Generic.pm index 29443f4..f44cb62 100644 --- a/lib/LXRng/Lang/Generic.pm +++ b/lib/LXRng/Lang/Generic.pm @@ -17,6 +17,8 @@ sub expand_include { return map { /([^\/].*)/ ? $1 : $_ } @paths; } + + return (); } 1; |