diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-03-13 20:41:31 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-03-13 20:41:31 +0000 |
commit | 80307216f2c99e22aa55050334da45f72e8610de (patch) | |
tree | 96f76cf685c503c529c2c2f9a3855dc1c9ce8aed /package/uhttpd | |
parent | e3af7c82f880aea86ade6de05904523c699ba60b (diff) | |
download | upstream-80307216f2c99e22aa55050334da45f72e8610de.tar.gz upstream-80307216f2c99e22aa55050334da45f72e8610de.tar.bz2 upstream-80307216f2c99e22aa55050334da45f72e8610de.zip |
uhttpd: reorder compiler flags to fix native build on Ubuntu 11.x
SVN-Revision: 30936
Diffstat (limited to 'package/uhttpd')
-rw-r--r-- | package/uhttpd/src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uhttpd/src/Makefile b/package/uhttpd/src/Makefile index 5e98ab8750..2b08ec668c 100644 --- a/package/uhttpd/src/Makefile +++ b/package/uhttpd/src/Makefile @@ -70,7 +70,7 @@ endif $(CC) $(CFLAGS) -c -o $@ $< compile: $(OBJ) $(TLSLIB) $(LUALIB) - $(CC) -o uhttpd $(LDFLAGS) $(LIB) $(OBJ) + $(CC) -o uhttpd $(LDFLAGS) $(OBJ) $(LIB) clean: rm -f *.o *.so uhttpd |