[hipl-commit] [trunk] Rev 4131: Employ $(srcdir) instead of $(top_srcdir) everywhere.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Thu, 1 Apr 2010 20:21:33 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 01/04/2010 at 20:21:33
Revision: 4131
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Employ $(srcdir) instead of $(top_srcdir) everywhere.
  
  Since we only have one top-level Makefile, both variables contain the
  same value.  Sticking to one for consistency simplifies things.

Modified:
  M  Makefile.am

=== modified file 'Makefile.am'
--- Makefile.am 2010-04-01 14:40:34 +0000
+++ Makefile.am 2010-04-01 17:20:33 +0000
@@ -629,12 +629,12 @@
 
 # The olddeb target is for maemo builds only
 bin deb increl olddeb rpm syncrepo:
-       env PYEXECDIR=$(pyexecdir) 
@top_srcdir@/test/packaging/create-package.sh $@
+       env PYEXECDIR=$(pyexecdir) @srcdir@/test/packaging/create-package.sh $@
 
 tools/hipdnsproxy: tools/dnsproxy.py
 tools/hipdnskeyparse: tools/parse-key-3.py
 tools/hipdnsproxy tools/hipdnskeyparse:
-       @top_srcdir@/tools/gen-python-starter.sh $(pyexecdir)/$(@F) $^ $@
+       @srcdir@/tools/gen-python-starter.sh $(pyexecdir)/$(@F) $^ $@
 
 autotools-clean: maintainer-clean
        rm -f aclocal.m4 compile config.* configure depcomp install-sh

Other related posts:

  • » [hipl-commit] [trunk] Rev 4131: Employ $(srcdir) instead of $(top_srcdir) everywhere. - Diego Biurrun