diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-10 22:01:41 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-11 11:39:04 +0100 |
commit | ca9036155d28ed9f5a1406356316c3fd41e5a400 (patch) | |
tree | 0d4a450a1356867d86c2605d2dfbf5aeead5d2b9 /tests | |
parent | d1cf45911935cc4fed9afd3a37d99616d31eb9da (diff) | |
download | ffmpeg-ca9036155d28ed9f5a1406356316c3fd41e5a400.tar.gz |
build: remove unnecessary FFLDFLAGS variable
This variable is set to the same value for all directories.
Adding the -L flags directly to LDFLAGS is simpler and achieves
the same thing.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 501a72f879..35e803d102 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -29,7 +29,7 @@ tests/data/asynth1.sw: tests/audiogen$(HOSTEXESUF) tests/data/asynth1.sw tests/vsynth%/00.pgm: TAG = GEN tests/seek_test$(EXESUF): tests/seek_test.o $(FF_DEP_LIBS) - $(LD) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS) + $(LD) $(LDFLAGS) -o $@ $< $(FF_EXTRALIBS) include $(SRC_PATH)/tests/fate.mak include $(SRC_PATH)/tests/fate2.mak |