[pisa-src] r1302 - trunk/Makefile.am

  • From: Jahn Bertsch <jahn.bertsch@xxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 26 Oct 2009 17:11:31 +0100

Author: bertsch
Date: Mon Oct 26 17:11:31 2009
New Revision: 1302

Log:
I think it was the case that the buildsystem created OpenWrt images 
automatically. Main advantage was, that files missing in the tarball could be 
identified automatically.

However, the openwrt build broke today:

co_client.c:22:62: error: pisa_cert.h: No such file or directory

This means, that the buildsystem did not catch this openwrt build error.

I added ticket #113 "Does the buildsystem build for openwrt?" for this issue.

This changeset fixes the build error.

Modified:
   trunk/Makefile.am

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am   Mon Oct 26 17:00:56 2009        (r1301)
+++ trunk/Makefile.am   Mon Oct 26 17:11:31 2009        (r1302)
@@ -49,7 +49,8 @@
        include/token.h \
        include/tunnel.h \
        include/uthash.h \
-       include/util.h
+       include/util.h \
+       community-operator/pisa_cert.h
 
 deb rpm:
        test/packaging/create-package.sh $@

Other related posts:

  • » [pisa-src] r1302 - trunk/Makefile.am - Jahn Bertsch