Skip to content

Commit

Permalink
Fix permissions on ssam.
Browse files Browse the repository at this point in the history
  • Loading branch information
deadpixi committed Jul 14, 2020
1 parent 74a51d4 commit 5d8acb3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ install:
cd sam; $(MAKE) install
cd samterm; $(MAKE) install
cd doc; $(MAKE) install
cp ssam $(BINDIR)
chmod +x $(BINDIR)/ssam
cd ssam; $(MAKE) install

uninstall:
@xdg-desktop-menu uninstall --mode $(MODE) deadpixi-sam.desktop || echo "unable to uninstall desktop entry"
Expand All @@ -43,12 +42,14 @@ uninstall:
cd sam; $(MAKE) uninstall
cd samterm; $(MAKE) uninstall
cd doc; $(MAKE) uninstall

cd ssam; $(MAKE) uninstall

clean:
cd libXg; $(MAKE) clean
cd libframe; $(MAKE) clean
cd sam; $(MAKE) clean
cd samterm; $(MAKE) clean
cd ssam; $(MAKE) clean

nuke: clean
rm -f config.mk
2 changes: 1 addition & 1 deletion ssam/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ nuke: clean
install: ssam
mkdir -p $(BINDIR)
cp ssam $(BINDIR)
chmod +x $(BINDIR)
chmod +x $(BINDIR)/ssam


uninstall:
Expand Down

0 comments on commit 5d8acb3

Please sign in to comment.