diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-05 11:45:29 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-05 11:45:29 +0000 |
| commit | 25c0d3ace92f8b7c38f4f0b6c66cca26e8fed67d (patch) | |
| tree | 9bcbf7ae8926585f6c74245cb1c3aaeb83b8aa4c | |
| parent | 6d6392c514379aeb5b1cfcd1a67ff614b1a576c2 (diff) | |
| download | rockbox-25c0d3ace92f8b7c38f4f0b6c66cca26e8fed67d.zip rockbox-25c0d3ace92f8b7c38f4f0b6c66cca26e8fed67d.tar.gz rockbox-25c0d3ace92f8b7c38f4f0b6c66cca26e8fed67d.tar.bz2 rockbox-25c0d3ace92f8b7c38f4f0b6c66cca26e8fed67d.tar.xz | |
Patch #1016011 by Eric Lassauge, fixes X11 simulator build in Cygwin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5176 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index da3dcce..ce709f2 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -191,7 +191,7 @@ $(OBJDIR)/%.o: $(PLUGINDIR)/lib/%.c $(OBJDIR)/%.rock: $(APPSDIR)/plugins/%.c $(APPSDIR)/plugin.h @echo CC $< - @$(CC) $(APPCFLAGS) -DPLUGIN -L$(OBJDIR) -lplugin -shared $< -o $@ + @$(CC) $(APPCFLAGS) -DPLUGIN -shared $< -L$(OBJDIR) -lplugin -o $@ @chmod -x $@ ################## Patterns for building objects ################## |