aboutsummaryrefslogtreecommitdiffstats
path: root/brctl
diff options
context:
space:
mode:
authorshemminger <shemminger>2004-05-25 18:36:27 +0000
committershemminger <shemminger>2004-05-25 18:36:27 +0000
commitdb6f5c32c100bf2d2bbe5b2415cf7ccecd27a321 (patch)
tree316040407911ee6865285f5f067667fb87987dda /brctl
parentf38d0e33cf6c361647b9123de36899911c362c78 (diff)
downloadandroid_external_brctl-db6f5c32c100bf2d2bbe5b2415cf7ccecd27a321.tar.gz
android_external_brctl-db6f5c32c100bf2d2bbe5b2415cf7ccecd27a321.tar.bz2
android_external_brctl-db6f5c32c100bf2d2bbe5b2415cf7ccecd27a321.zip
Allow LDFLAGS, add URL to spec
Diffstat (limited to 'brctl')
-rw-r--r--brctl/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/brctl/Makefile.in b/brctl/Makefile.in
index f56bd9c..2e91455 100644
--- a/brctl/Makefile.in
+++ b/brctl/Makefile.in
@@ -3,6 +3,7 @@ KERNEL_HEADERS=-I@KERNEL_HEADERS@
CC=@CC@
CFLAGS= -Wall -g @CFLAGS@
+LDFLAGS=@LDFLAGS@
INCLUDE=-I../libbridge $(KERNEL_HEADERS)
LIBS= -L ../libbridge -lbridge -lsysfs
@@ -35,7 +36,7 @@ install: $(PROGRAMS)
$(INSTALL) -m 755 $(PROGRAMS) $(DESTDIR)$(sbindir)
brctl: $(brctl_OBJECTS) ../libbridge/libbridge.a
- $(CC) $(brctl_OBJECTS) $(LIBS) -o brctl
+ $(CC) $(LDFLAGS) $(brctl_OBJECTS) $(LIBS) -o brctl
# brctld is for debug only, not production use
brctld: $(brctld_OBJECTS)