From e5fb6a28ffb09782e4df08251956f42c48445147 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 20 Apr 2015 20:59:00 -0500 Subject: Switch setprop to use TOYBOX_ON_ANDROID and fix getprop include. (I commented out the android-only #include in getprop to do what compile testing I could, and then forgot to uncomment it.) --- toys/android/getprop.c | 2 +- toys/android/setprop.c | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) (limited to 'toys/android') diff --git a/toys/android/getprop.c b/toys/android/getprop.c index 9d5398aa..400d80e7 100644 --- a/toys/android/getprop.c +++ b/toys/android/getprop.c @@ -17,7 +17,7 @@ config GETPROP #define FOR_getprop #include "toys.h" -//#include +#include GLOBALS( size_t size; diff --git a/toys/android/setprop.c b/toys/android/setprop.c index ef24c9ad..cbcd152b 100644 --- a/toys/android/setprop.c +++ b/toys/android/setprop.c @@ -7,6 +7,7 @@ USE_SETPROP(NEWTOY(setprop, "<2>2", TOYFLAG_USR|TOYFLAG_SBIN)) config SETPROP bool "setprop" default y + depends on TOYBOX_ON_ANDROID help usage: setprop NAME VALUE @@ -16,13 +17,10 @@ config SETPROP #define FOR_setprop #include "toys.h" -#if defined(__ANDROID__) #include -#endif void setprop_main(void) { -#if defined(__ANDROID__) char *name = toys.optargs[0], *value = toys.optargs[1]; char *p; size_t name_len = strlen(name), value_len = strlen(value); @@ -48,5 +46,4 @@ void setprop_main(void) if (property_set(name, value)) error_msg("failed to set property '%s' to '%s'", name, value); -#endif } -- cgit v1.2.3