diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-25 10:38:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-25 10:38:12 +0100 |
commit | 836a93e24e4b1db3aa508ed8554ab13bc8788e74 (patch) | |
tree | 599c4d39655b6605d18f65ed2668d37b499feb6f | |
parent | 34d464316872fec13fc024d630cbfcc26b77185a (diff) |
Simplify some #if
Change-Id: I9d3239bdbb92f715b050fd91238add5588969bf0
-rw-r--r-- | scp2/source/ooo/ure.scp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/scp2/source/ooo/ure.scp b/scp2/source/ooo/ure.scp index 6dd8e7e7a805..9da2e26118b1 100644 --- a/scp2/source/ooo/ure.scp +++ b/scp2/source/ooo/ure.scp @@ -20,23 +20,18 @@ #include "AutoInstall/ure" -#ifndef MACOSX +#if !defined MACOSX + Directory gid_Dir_Common_Ure #ifdef WNT ParentID = gid_Dir_Brand_Root; - #else - ParentID = PREDEFINED_PROGDIR; - #endif - #ifdef WNT HostName = "URE"; #else + ParentID = PREDEFINED_PROGDIR; HostName = "ure"; #endif Styles = (UREDIRECTORY); End -#endif - -#if !defined MACOSX Directory gid_Dir_Ure_Bin ParentID = gid_Dir_Common_Ure; |