Browse Source

make: remove extraneous slash

The variables were often referenced with a trailing slash, and having
`//` works, but is sloppy.
tags/v0.9.0
Euan Kemp 6 years ago
parent
commit
e6b6ab2b11
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      Makefile

+ 5
- 5
Makefile View File

1
-BUILD=./build/
2
-WIN=$(BUILD)win/
3
-LINUX=$(BUILD)linux/
4
-OSX=$(BUILD)osx/
5
-ARM6=$(BUILD)arm/
1
+BUILD=./build
2
+WIN=$(BUILD)win
3
+LINUX=$(BUILD)linux
4
+OSX=$(BUILD)osx
5
+ARM6=$(BUILD)arm
6
 SOURCE=oragono.go
6
 SOURCE=oragono.go
7
 VERS=XXX
7
 VERS=XXX
8
 
8
 

Loading…
Cancel
Save