summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-11-02 22:16:13 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-11-02 22:16:13 +0000
commitd20343b3cbbe89c4061ea0b08827b784c977b29b (patch)
tree68e913635314afcfa3f37f303f8cd631905c794f /Makefile
parent31ba0b4d7f4241916fd0f98e22ad97cb5aeacc90 (diff)
use cp ; strip instead of strip -o
Originally committed as revision 1152 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 259130ef84..31082c7f0f 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ ffmpeg_g$(EXE): ffmpeg.o $(DEP_LIBS)
-lavformat -lavcodec $(EXTRALIBS)
ffmpeg$(EXE): ffmpeg_g$(EXE)
- $(STRIP) -o $@ $< ; chmod --reference=$< $@
+ cp $< $@ ; $(STRIP) $@
ffserver$(EXE): ffserver.o $(DEP_LIBS)
$(CC) $(LDFLAGS) $(FFSLDFLAGS) \