Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rw-r--r--shell/conf/Makefile.am3
-rwxr-xr-xsugar-emulator2
-rw-r--r--sugar/Makefile.am1
4 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 3539e93..3ae1ba5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,6 +5,9 @@ ACLOCAL_AMFLAGS = -I m4
dbusconfdir = $(pkgdatadir)
dbusconf_DATA = dbus-installed.conf
+bin_SCRIPTS = \
+ sugar-emulator
+
install-data-local:
$(top_srcdir)/sugar/setup.py \
$(top_srcdir)/activities \
diff --git a/shell/conf/Makefile.am b/shell/conf/Makefile.am
index a7480f8..0c3967c 100644
--- a/shell/conf/Makefile.am
+++ b/shell/conf/Makefile.am
@@ -1,5 +1,4 @@
sugardir = $(pkgdatadir)/shell/conf
sugar_PYTHON = \
__init__.py \
- ActivityRegistry.py \
- Profile.py
+ ActivityRegistry.py
diff --git a/sugar-emulator b/sugar-emulator
index 5d97e0f..a49eee8 100755
--- a/sugar-emulator
+++ b/sugar-emulator
@@ -37,7 +37,7 @@ from sugar.emulator import Emulator
emulator = Emulator()
emulator.start()
-program = 'sugar-session'
+program = 'sugar-shell'
if len(sys.argv) > 1:
program = sys.argv[1]
os.execlp('dbus-launch', 'dbus-launch', '--exit-with-session',
diff --git a/sugar/Makefile.am b/sugar/Makefile.am
index 7e2b0d2..ae2e2ee 100644
--- a/sugar/Makefile.am
+++ b/sugar/Makefile.am
@@ -7,6 +7,7 @@ sugar_PYTHON = \
emulator.py \
env.py \
logger.py \
+ profile.py \
setup.py \
simulator.py \
TracebackUtils.py \