i2pd/debian/patches/rename-binary.patch

24 lines
331 B
Diff
Raw Normal View History

2014-09-19 06:07:41 +04:00
--- a/Makefile
+++ b/Makefile
2014-10-30 00:54:47 +03:00
@@ -10,9 +10,9 @@
2014-09-19 06:07:41 +04:00
include Makefile.linux
endif
-all: obj i2p
+all: obj i2pd
-i2p: $(OBJECTS:obj/%=obj/%)
+i2pd: $(OBJECTS:obj/%=obj/%)
2014-10-30 00:54:47 +03:00
$(CXX) -o $@ $^ $(LDFLAGS) $(LIBS)
2014-09-19 06:07:41 +04:00
.SUFFIXES:
2014-10-30 00:54:47 +03:00
@@ -25,7 +25,7 @@
2014-09-19 06:07:41 +04:00
mkdir -p obj
clean:
- rm -fr obj i2p
+ rm -fr obj i2pd
.PHONY: all
.PHONY: clean