projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be98172
)
make libc.so symlink relative instead of absolute (#3878)
author
Felix Fietkau
<nbd@openwrt.org>
Sun, 17 Aug 2008 12:30:14 +0000
(12:30 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Sun, 17 Aug 2008 12:30:14 +0000
(12:30 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12333
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
toolchain/uClibc/Makefile
patch
|
blob
|
history
diff --git
a/toolchain/uClibc/Makefile
b/toolchain/uClibc/Makefile
index
197f736
..
c1ff0f4
100644
(file)
--- a/
toolchain/uClibc/Makefile
+++ b/
toolchain/uClibc/Makefile
@@
-157,7
+157,7
@@
define Build/Compile
$(SED) 's,UCLIBC_VERSION=.*,UCLIBC_VERSION=$(PKG_VERSION),' $(TOOLCHAIN_DIR)/info.mk
$(SED) 's,UCLIBC_PATCHVER=.*,UCLIBC_PATCHVER=$(PKG_EXTRAVERSION),' $(TOOLCHAIN_DIR)/info.mk
rm -rf $(TOOLCHAIN_DIR)/lib/libc.so
- ln -s
$(TOOLCHAIN_DIR)/lib/
libc.so.0 $(TOOLCHAIN_DIR)/lib/libc.so
+ ln -s libc.so.0 $(TOOLCHAIN_DIR)/lib/libc.so
endef
define Build/Install