From 585dbf63399742415bb84464cb9cf7a8d5adc317 Mon Sep 17 00:00:00 2001 From: Laurent Carlier Date: Fri, 20 Jun 2008 10:28:43 +0000 Subject: [PATCH] [DEVELOPMENT ENVIRONMENT] * BUG: Fix installation path for gambas executable for autotools package, and install it in sbin dir instead of bin dir now. git-svn-id: svn://localhost/gambas/trunk@1420 867c0c6c-44f3-4631-809d-bfa615b0a4ec --- app/src/gambas3/install/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/gambas3/install/Makefile.am b/app/src/gambas3/install/Makefile.am index 16f1bd5dd..e0f62e745 100644 --- a/app/src/gambas3/install/Makefile.am +++ b/app/src/gambas3/install/Makefile.am @@ -34,9 +34,9 @@ install-exec-local: chmod a-x $(prefix)/$(GBCONTROL_path)/$(PACKAGE)/*.png; \ fi \ else \ - echo "Installing $(PACKAGE).gambas file in $(bindir)..."; \ - $(INSTALL) -d $(prefix)/$(bindir); \ - $(INSTALL) $(PACKAGE).gambas $(prefix)/$(bindir); \ + echo "Installing $(PACKAGE).gambas file in $(sbindir)..."; \ + $(INSTALL) -d $(sbindir); \ + $(INSTALL) $(PACKAGE).gambas $(sbindir); \ fi) uninstall-local: @@ -49,7 +49,7 @@ uninstall-local: rm -rf $(prefix)/$(GBCONTROL_path)/$(PACKAGE); \ else \ echo "Removing $(PACKAGE).gambas file..." \ - rm $(prefix)/$(bindir)/$(PACKAGE).gambas; \ + rm $(sbindir)/$(PACKAGE).gambas; \ fi) dist-hook: