author | kergoth <kergoth> | 2002-11-05 21:21:53 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-05 21:21:53 (UTC) |
commit | 1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177 (patch) (side-by-side diff) | |
tree | 0fece190462c6a352749a2c43e5c94a9f1bab36f | |
parent | 29d8b412c02963b58482a9e58e23becb8f18fa0d (diff) | |
download | opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.zip opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.tar.gz opie-1e44fcf55d2e1724e06b8f2eeaeeb12b0fe13177.tar.bz2 |
use ln -sf, not ln -s
-rw-r--r-- | Rules.make | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -18,32 +18,32 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) @cat $(TOPDIR)/packages | \ $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends $(TOPDIR)/.depends.cfgs: # config.in interdependencies @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ @-rm -f dirs $(TOPDIR)/stamp-headers : mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private - ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) - ( cd include/qtopia && rm -f *.h; ln -s ../../library/*.h .; ) - ( cd include/qtopia/private && rm -f *.h; ln -s ../../../library/backend/*.h .; ) - ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) - ( cd include/opie && ln -s ../../libsql/*.h .; ) - ( cd include/opie && ln -s ../../libopie/pim/*.h .; ) + ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) + ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) + ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) + ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) + ( cd include/opie && ln -sf ../../libsql/*.h .; ) + ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ - ln -s ../../libopie/$$generatedHeader $$generatedHeader; done ) + ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) touch $@ $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/conf scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/mconf scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/qconf scripts/kconfig/qconf $(TOPDIR)/qmake/qmake : $(call descend,$(shell dirname $@),$(shell basename $@)) $(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default $(TOPDIR)/mkspecs/default : ln -sf linux-g++ $@ |