Skip to content

Commit 0ed682d

Browse files
committed
change makefile removing group and adding -f to ln
1 parent 9efd1db commit 0ed682d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ install: manpages install_files
1313

1414
install_files:
1515
@echo do the install stuff
16-
sudo install -o root -g root -m 755 notes /usr/local/bin/notes
17-
sudo ln -s /usr/local/bin/notes /usr/local/bin/notebook
16+
sudo install -o root -m 755 notes /usr/local/bin/notes
17+
sudo ln -sf /usr/local/bin/notes /usr/local/bin/notebook
1818

1919
manpages:
2020
@echo create the docs files to be installed
2121
gzip -c docs/notes.1 > tmp/notes.1.gz
2222
gzip -c docs/notebook.1 > tmp/notebook.1.gz
23-
sudo install -o root -g root -m 644 tmp/notes.1.gz /usr/share/man/man1
24-
sudo install -o root -g root -m 644 tmp/notebook.1.gz /usr/share/man/man1
23+
sudo install -o root -m 644 tmp/notes.1.gz /usr/share/man/man1
24+
sudo install -o root -m 644 tmp/notebook.1.gz /usr/share/man/man1
2525

2626
clean:
2727
@echo clean up after build

0 commit comments

Comments
 (0)