Changeset 2dd7a46bd36fe17657f8e4098896cbaffa590dc5
- Timestamp:
- 23/11/03 15:00:25
(5 years ago)
- Author:
- Christophe Massiot <massiot@videolan.org>
- git-committer:
- Christophe Massiot <massiot@videolan.org> 1069596025 +0000
- git-parent:
[990d95c859f5bbd5b848d0b94d09f9a27bf0678a]
- git-author:
- Christophe Massiot <massiot@videolan.org> 1069596025 +0000
- Message:
Bug fix for *.a libraries.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r86747dd |
r2dd7a46 |
|
| 3 | 3 | # *************************************************************************** |
|---|
| 4 | 4 | # Copyright (C) 2003 VideoLAN |
|---|
| 5 | | # $Id: Makefile,v 1.4 2003/11/23 13:23:20 massiot Exp $ |
|---|
| | 5 | # $Id: Makefile,v 1.5 2003/11/23 14:00:25 massiot Exp $ |
|---|
| 6 | 6 | # |
|---|
| 7 | 7 | # Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 45 | 45 | (cd tmp; tar cf - .) | tar xf - |
|---|
| 46 | 46 | rm -rf tmp |
|---|
| | 47 | ranlib lib/*\.a |
|---|
| 47 | 48 | |
|---|
| 48 | 49 | clean-src: FORCE |
|---|
| r86747dd |
r2dd7a46 |
|
| 4 | 4 | # *************************************************************************** |
|---|
| 5 | 5 | # Copyright (C) 2003 VideoLAN |
|---|
| 6 | | # $Id: change_prefix.sh,v 1.2 2003/11/23 13:23:20 massiot Exp $ |
|---|
| | 6 | # $Id: change_prefix.sh,v 1.3 2003/11/23 14:00:25 massiot Exp $ |
|---|
| 7 | 7 | # |
|---|
| 8 | 8 | # Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 54 | 54 | fi |
|---|
| 55 | 55 | done |
|---|
| 56 | | else |
|---|
| | 56 | elif test ".`file $file | grep text\|shell`" != "." ; then |
|---|
| 57 | 57 | sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp |
|---|
| 58 | 58 | mv -f $file.tmp $file |
|---|