[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
This commit is contained in:
parent
4834202640
commit
585dbf6339
1 changed files with 4 additions and 4 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue