[Python-modules-commits] r16180 - in packages/shiboken/trunk/debian (rules)

odyx at users.alioth.debian.org odyx at users.alioth.debian.org
Tue Mar 22 10:26:36 UTC 2011


    Date: Tuesday, March 22, 2011 @ 10:26:26
  Author: odyx
Revision: 16180

Drop $(shell indirections from debian/rules.

Signed-off-by: Didier Raboud <odyx at debian.org>

Modified:
  packages/shiboken/trunk/debian/rules

Modified: packages/shiboken/trunk/debian/rules
===================================================================
--- packages/shiboken/trunk/debian/rules	2011-03-22 10:24:33 UTC (rev 16179)
+++ packages/shiboken/trunk/debian/rules	2011-03-22 10:26:26 UTC (rev 16180)
@@ -69,25 +69,25 @@
 
 prepare_debug_test-%:
 	# Prepare the convenience symlinks for the tests
-	$(shell ln -s libother-python$*-dbg.so \
-	   build-$*-dbg/tests/libother/libother.so )
-	$(shell ln -s libsample-python$*-dbg.so \
-	   build-$*-dbg/tests/libsample/libsample.so )
-	$(shell ln -s other-python$*-dbg.so \
-	   build-$*-dbg/tests/otherbinding/other.so )
-	$(shell ln -s sample-python$*-dbg.so \
-	   build-$*-dbg/tests/samplebinding/sample.so )
+	ln -sf libother-python$*-dbg.so \
+	   build-$*-dbg/tests/libother/libother.so
+	ln -sf libsample-python$*-dbg.so \
+	   build-$*-dbg/tests/libsample/libsample.so
+	ln -sf other-python$*-dbg.so \
+	   build-$*-dbg/tests/otherbinding/other.so
+	ln -sf sample-python$*-dbg.so \
+	   build-$*-dbg/tests/samplebinding/sample.so
 
 prepare_test-%:
 	# Prepare the convenience symlinks for the tests
-	$(shell ln -s libother-python$*.so \
-	   build-$*/tests/libother/libother.so )
-	$(shell ln -s libsample-python$*.so \
-	   build-$*/tests/libsample/libsample.so )
-	$(shell ln -s other-python$*.so \
-	   build-$*/tests/otherbinding/other.so )
-	$(shell ln -s sample-python$*.so \
-	   build-$*/tests/samplebinding/sample.so )
+	ln -sf libother-python$*.so \
+	   build-$*/tests/libother/libother.so
+	ln -sf libsample-python$*.so \
+	   build-$*/tests/libsample/libsample.so
+	ln -sf other-python$*.so \
+	   build-$*/tests/otherbinding/other.so
+	ln -sf sample-python$*.so \
+	   build-$*/tests/samplebinding/sample.so
 
 #### CLEAN ####
 override_dh_auto_clean:
@@ -109,10 +109,10 @@
 
 override_dh_install_done: override_dh_install_real
 	# Setup the default version symbolic links
-	$(shell ln -sf libshiboken-python${DEFAULT_PY}.so \
-	               debian/libshiboken-dev/usr/lib/libshiboken.so )
-	$(shell ln -sf libshiboken-python${DEFAULT_PY}-dbg.so \
-	               debian/shiboken-dbg/usr/lib/libshiboken-dbg.so )
+	ln -sf libshiboken-python${DEFAULT_PY}.so \
+	               debian/libshiboken-dev/usr/lib/libshiboken.so
+	ln -sf libshiboken-python${DEFAULT_PY}-dbg.so \
+	               debian/shiboken-dbg/usr/lib/libshiboken-dbg.so
 
 #### Shared libs ####
 override_dh_makeshlibs: $(PYVERSIONS:%=override_dh_makeshlibs-%)




More information about the Python-modules-commits mailing list