Integrate control panel in the build so that I can actually

distcheck.
master
Marco Pesenti Gritti 17 years ago
parent 63d88df040
commit b72f00e30b

@ -2,8 +2,10 @@ bin_SCRIPTS = \
sugar \
sugar-activity \
sugar-backup \
sugar-control-panel \
sugar-install-bundle \
sugar-launch
sugar-launch \
sugar-shell
EXTRA_DIST = $(bin_SCRIPTS) sugar.in

@ -17,8 +17,11 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
import getopt, sys
import sys
import getopt
sys.path.insert(0, env.get_shell_path())
import control
def cmd_help():

@ -56,6 +56,7 @@ lib/sugar/datastore/Makefile
services/Makefile
services/shell/Makefile
shell/Makefile
shell/controlpanel/Makefile
shell/intro/Makefile
shell/hardware/Makefile
shell/view/Makefile

@ -1,6 +1,4 @@
SUBDIRS = hardware model view intro
bin_SCRIPTS = sugar-shell
SUBDIRS = controlpanel hardware model view intro
sugardir = $(pkgdatadir)/shell
sugar_PYTHON = \

@ -0,0 +1,2 @@
sugardir = $(pkgdatadir)/shell/controlpanel
sugar_PYTHON = control.py
Loading…
Cancel
Save