Skip to content

Commit

Permalink
not all install's understand -D
Browse files Browse the repository at this point in the history
  • Loading branch information
esmil committed Apr 13, 2009
1 parent 5025412 commit e89227f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ clean:
rm -f $(program) *.o *.c~ *.h~

install: $(program)
$(INSTALL) -m755 -D $(program) $(DESTDIR)$(PREFIX)/bin/$(program)
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -m755 $(program) $(DESTDIR)$(PREFIX)/bin/$(program)

uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(program)

0 comments on commit e89227f

Please sign in to comment.