Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

Plugin attempts to append .exe on OS X, other non-Linux platforms besides Windows #10

Closed
GoogleCodeExporter opened this issue Jan 28, 2016 · 2 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
1. Running make with GCC 4.2 (probably more)

Compiled on OS X Lion with gcc-4.2.1 and dependencies installed via MacPorts.  
GCC provided by Xcode 4.2.1.

This should fix it so it only appends .exe on Windows platforms.

Index: Makefile
===================================================================
--- Makefile    (revision 175)
+++ Makefile    (working copy)
@@ -5,7 +5,7 @@
 CFLAGS=-pipe -g -O2 -Wall $(shell pkg-config --cflags gtk+-2.0 gimp-2.0)

 OS=$(shell uname -s)
-ifeq ($(OS), Linux)
+ifeq (,$(findstring Windows,$(OS)))
 EXT=
 else
 EXT=.exe

Attached a .diff file as well.

Original issue reported on code.google.com by clifton....@gmail.com on 15 Feb 2012 at 11:13

@GoogleCodeExporter
Copy link
Author

Wrong diff again, gotta stop doing that.

Original comment by clifton....@gmail.com on 15 Feb 2012 at 11:15

Attachments:

@GoogleCodeExporter
Copy link
Author

Fixed in SVN trunk

Original comment by ski...@gmail.com on 23 Jun 2012 at 10:13

  • Changed state: Fixed

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant