diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-05-07 21:30:01 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-05-07 21:30:01 +0200 |
commit | 360df630f217a3a85f245d4378c1f98169cad058 (patch) | |
tree | 986f68798e9cfa95fc275d0092188e3404626934 | |
parent | 30ad71052cf2c1b8a7aa7cadc5ae6e631824748c (diff) | |
download | sbotools2-360df630f217a3a85f245d4378c1f98169cad058.tar.xz |
sboconfig: need to accept FALSE for SBO_HOME too
-rwxr-xr-x | sboconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -117,7 +117,7 @@ if (exists $changes{PKG_DIR}) { usage_error("$warn -p") unless $changes{PKG_DIR} =~ qr#^(/|FALSE$)#; } if (exists $changes{SBO_HOME}) { - usage_error("$warn -s") unless $changes{SBO_HOME} =~ qr#^/#; + usage_error("$warn -s") unless $changes{SBO_HOME} =~ qr#^(/|FALSE$)#; } if (exists $changes{LOCAL_OVERRIDES}) { usage_error("$warn -o") unless $changes{LOCAL_OVERRIDES} =~ qr#^(/|FALSE$)#; |