i2pd/debian/patches/rename-binary.patch
2014-10-30 13:50:29 +00:00

24 lines
331 B
Diff

--- a/Makefile
+++ b/Makefile
@@ -10,9 +10,9 @@
include Makefile.linux
endif
-all: obj i2p
+all: obj i2pd
-i2p: $(OBJECTS:obj/%=obj/%)
+i2pd: $(OBJECTS:obj/%=obj/%)
$(CXX) -o $@ $^ $(LDFLAGS) $(LIBS)
.SUFFIXES:
@@ -25,7 +25,7 @@
mkdir -p obj
clean:
- rm -fr obj i2p
+ rm -fr obj i2pd
.PHONY: all
.PHONY: clean