diff options
author | Rob Landley <rob@landley.net> | 2006-02-10 21:38:20 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-10 21:38:20 +0000 |
commit | 4926d643ea9ad56fc6b2173c9a3ce3719d6bb39f (patch) | |
tree | 85a0cdb643943c680c5a850f23ae2220db113ddb /init | |
parent | 4a1d874e1dbfd8b0c0906c3793a8a0a5036b4869 (diff) |
Missed this in svn 13701.
Diffstat (limited to 'init')
-rw-r--r-- | init/Makefile.in | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/init/Makefile.in b/init/Makefile.in index c7d3cc4a4..dc63f9bf2 100644 --- a/init/Makefile.in +++ b/init/Makefile.in @@ -14,8 +14,6 @@ INIT-y:= INIT-$(CONFIG_HALT) += halt.o INIT-$(CONFIG_INIT) += init.o INIT-$(CONFIG_MESG) += mesg.o -INIT-$(CONFIG_POWEROFF) += poweroff.o -INIT-$(CONFIG_REBOOT) += reboot.o ifeq ($(strip $(CONFIG_HALT)),y) CONFIG_INIT_SHARED=y @@ -23,21 +21,11 @@ else ifeq ($(strip $(CONFIG_INIT)),y) CONFIG_INIT_SHARED=y else -ifeq ($(strip $(CONFIG_POWEROFF)),y) -CONFIG_INIT_SHARED=y -else -ifeq ($(strip $(CONFIG_REBOOT)),y) -CONFIG_INIT_SHARED=y -else CONFIG_INIT_SHARED=n endif endif -endif -endif -ifeq ($(strip $(CONFIG_INIT_SHARED)),y) INIT-$(CONFIG_INIT_SHARED) += init_shared.o -endif libraries-y+=$(INIT_DIR)$(INIT_AR) |