diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2012-11-08 03:45:14 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2012-11-08 03:45:14 +0000 |
commit | 7c381d2d272de43c3c439f70bd7059dd3ac0ee4e (patch) | |
tree | bbeee706f749209371ac296a0d3b2c40e9a1c45e | |
parent | 7a9d3996d2ad1bf2622f6d7826aa2469a7809ac5 (diff) | |
download | enlightenment-7c381d2d272de43c3c439f70bd7059dd3ac0ee4e.tar.gz enlightenment-7c381d2d272de43c3c439f70bd7059dd3ac0ee4e.tar.xz enlightenment-7c381d2d272de43c3c439f70bd7059dd3ac0ee4e.zip |
e/modules: fix missing "\" for line continuation
Add "\" for line continuation in temperature and dropshadow modules.
SVN revision: 78988
-rw-r--r-- | src/modules/Makefile_dropshadow.am | 2 | ||||
-rw-r--r-- | src/modules/Makefile_temperature.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/Makefile_dropshadow.am b/src/modules/Makefile_dropshadow.am index 72faadc10..924e03c5d 100644 --- a/src/modules/Makefile_dropshadow.am +++ b/src/modules/Makefile_dropshadow.am @@ -9,7 +9,7 @@ dropshadowpkg_LTLIBRARIES = dropshadow/module.la dropshadow_module_la_SOURCES = dropshadow/e_mod_main.h \ dropshadow/e_mod_main.c \ - dropshadow/e_mod_config.h + dropshadow/e_mod_config.h \ dropshadow/e_mod_config.c dropshadow_module_la_DEPENDENCIES = $(MDEPENDENCIES) diff --git a/src/modules/Makefile_temperature.am b/src/modules/Makefile_temperature.am index 6538c5f74..1d18292bc 100644 --- a/src/modules/Makefile_temperature.am +++ b/src/modules/Makefile_temperature.am @@ -11,7 +11,7 @@ temperature_module_la_DEPENDENCIES = $(MDEPENDENCIES) temperature_module_la_SOURCES = temperature/e_mod_main.c \ temperature/e_mod_main.h \ temperature/e_mod_config.c \ - temperature/e_mod_main_private.h + temperature/e_mod_main_private.h \ temperature/e_mod_tempget.c if HAVE_EEZE |