[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#9464: repeated 'rm -f "./so_locations"' on make clean
From: |
Stefan Kost |
Subject: |
bug#9464: repeated 'rm -f "./so_locations"' on make clean |
Date: |
Thu, 08 Sep 2011 15:12:12 +0200 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.21) Gecko/20110831 Thunderbird/3.1.13 |
> libtool --version
ltmain.sh (GNU libtool) 2.2.6b
> make clean
rm -rf .libs _libs
test -z "libgstasf.la libgstdvdlpcmdec.la libgstdvdsub.la
libgstiec958.la libgstmpegaudioparse.la libgstmpegstream.la
libgstrmdemux.la libgstsynaesthesia.la" || rm -f libgstasf.la
libgstdvdlpcmdec.la libgstdvdsub.la libgstiec958.la
libgstmpegaudioparse.la libgstmpegstream.la libgstrmdemux.la
libgstsynaesthesia.la
rm -f "./so_locations"
rm -f "./so_locations"
rm -f "./so_locations"
rm -f "./so_locations"
rm -f "./so_locations"
rm -f "./so_locations"
rm -f "./so_locations"
rm -f "./so_locations"
rm -f *.o
rm -f *.lo
This is caused by:
clean-pluginLTLIBRARIES:
-test -z "$(plugin_LTLIBRARIES)" || rm -f $(plugin_LTLIBRARIES)
@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" != "$$p" || dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
a simple solution might be
test -d && (echo "rm -f \"$${dir}/so_locations\""; rm -f
"$${dir}/so_locations" ); \
Stefan
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- bug#9464: repeated 'rm -f "./so_locations"' on make clean,
Stefan Kost <=