Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rofl0r/proxychains-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2013-02-10 15:38:05 +0400
committerrofl0r <retnyg@gmx.net>2013-02-10 15:38:05 +0400
commit73ff65ed76986b966ddb66eafa8a183690f214e0 (patch)
treea83878ebaf1cfb1fc6809161ac2f9d8881a9678d
parentaa1b9df2cb6016f7c5a7fae53cde62eae97f5141 (diff)
Makefile: prevent from using 2 slashes (cosmetic change)
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6efe417..7a3080f 100644
--- a/Makefile
+++ b/Makefile
@@ -49,13 +49,13 @@ CFLAGS_MAIN=-DLIB_DIR=\"$(libdir)\" -DSYSCONFDIR=\"$(sysconfdir)\" -DDLL_NAME=\"
all: $(ALL_LIBS) $(ALL_TOOLS)
install-config:
- install -d $(DESTDIR)/$(sysconfdir)
- install $(INSTALL_FLAGS) 644 src/proxychains.conf $(DESTDIR)/$(sysconfdir)/
+ install -d $(DESTDIR)$(sysconfdir)
+ install $(INSTALL_FLAGS) 644 src/proxychains.conf $(DESTDIR)$(sysconfdir)/
install:
- install -d $(DESTDIR)/$(bindir)/ $(DESTDIR)/$(libdir)/
- install $(INSTALL_FLAGS) 755 $(ALL_TOOLS) $(DESTDIR)/$(bindir)/
- install $(INSTALL_FLAGS) 644 $(ALL_LIBS) $(DESTDIR)/$(libdir)/
+ install -d $(DESTDIR)$(bindir)/ $(DESTDIR)$(libdir)/
+ install $(INSTALL_FLAGS) 755 $(ALL_TOOLS) $(DESTDIR)$(bindir)/
+ install $(INSTALL_FLAGS) 644 $(ALL_LIBS) $(DESTDIR)$(libdir)/
clean:
rm -f $(ALL_LIBS)