From e6b6ab2b112972557c1e368bf22f5c42e3d29311 Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Thu, 13 Jul 2017 23:10:58 -0700 Subject: [PATCH] make: remove extraneous slash The variables were often referenced with a trailing slash, and having `//` works, but is sloppy. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c8c2b244..f9b2f6c9 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -BUILD=./build/ -WIN=$(BUILD)win/ -LINUX=$(BUILD)linux/ -OSX=$(BUILD)osx/ -ARM6=$(BUILD)arm/ +BUILD=./build +WIN=$(BUILD)win +LINUX=$(BUILD)linux +OSX=$(BUILD)osx +ARM6=$(BUILD)arm SOURCE=oragono.go VERS=XXX