# HG changeset patch # User truelight # Date 1167779992 0 # Node ID 792872b8d785628243e3e7e37fd0263d67388c05 # Parent 16fb36e0af27d829d926fc5fbb06d2025ee00cae (svn r7780) [Configure] -Fix: strip before copy, not copy before strip diff -r 16fb36e0af27 -r 792872b8d785 Makefile.src.in --- a/Makefile.src.in Tue Jan 02 23:14:39 2007 +0000 +++ b/Makefile.src.in Tue Jan 02 23:19:52 2007 +0000 @@ -219,10 +219,11 @@ $(TTD): rev.o $(OBJS) $(CONFIG_CACHE_LINKER) $(E) '$(STAGE) Linking $@' - $(Q)$(CXX_HOST) $(LDFLAGS) rev.o $(OBJS) $(LIBS) -o $@ && cp $@ $(BIN_DIR)/ + $(Q)$(CXX_HOST) $(LDFLAGS) rev.o $(OBJS) $(LIBS) -o $@ ifdef STRIP $(Q)$(STRIP) $@ endif + $(Q)cp $@ $(BIN_DIR)/ # The targets to compile the endian-code