Remove undeeded slash in Makefile install target

This commit is contained in:
Themaister 2011-01-05 20:47:31 +01:00
parent 7bac622bf3
commit 889924283f

View File

@ -82,7 +82,7 @@ ssnes: $(OBJ)
$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
install: $(TARGET)
install -m755 $(TARGET) $(DESTDIR)/$(PREFIX)/bin
install -m755 $(TARGET) $(DESTDIR)$(PREFIX)/bin
install -m644 ssnes.cfg $(DESTDIR)/etc/ssnes.cfg
uninstall: $(TARGET)