1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-01 20:22:19 +00:00
i2pd/debian/patches/rename-binary.patch

24 lines
331 B
Diff
Raw Normal View History

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