| 1 |
operz |
1 |
#!/bin/ksh |
| 2 |
|
|
# |
| 3 |
|
|
# $Id$ |
| 4 |
|
|
# |
| 5 |
|
|
# Copyright 2006 Cory Omand <comand@blastwave.org> |
| 6 |
|
|
# All rights reserved. Use is subject to license terms. |
| 7 |
|
|
# |
| 8 |
|
|
# Redistribution and/or use, with or without modification, is |
| 9 |
|
|
# permitted. This software is without warranty of any kind. The |
| 10 |
|
|
# author(s) shall not be liable in the event that use of the |
| 11 |
|
|
# software causes damage. |
| 12 |
|
|
# |
| 13 |
|
|
# fixlibtool - remove build-only settings from libtool .la files |
| 14 |
|
|
# |
| 15 |
|
|
|
| 16 |
|
|
# Remove references to temporary directories |
| 17 |
|
|
perl -i -plne ' |
| 18 |
|
|
if (/^dependency_libs/) { |
| 19 |
|
|
s# -[ILR]\s*/tmp\S+##g; |
| 20 |
|
|
s# -[ILR]\s*/\S+/ # #g; |
| 21 |
|
|
} |
| 22 |
|
|
' $@ |
| 23 |
|
|
|