Changeset 4051


Ignore:
Timestamp:
02/11/08 11:50:32 (5 years ago)
Author:
thomas
Message:

opkg: distcheck fixes

Location:
trunk/src/target/opkg
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/opkg/configure.ac

    r4050 r4051  
    11# Process this file with autoconf to produce a configure script 
    2 AC_INIT(libopkg/opkg.c) 
     2AC_INIT(libopkg/libopkg.c) 
    33AM_INIT_AUTOMAKE([opkg], [0.99.163]) 
    44AM_CONFIG_HEADER(libopkg/config.h) 
  • trunk/src/target/opkg/libopkg/Makefile.am

    r4049 r4051  
    11 
    2 ALL_CFLAGS=-g -O -Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DDATADIR=\"@datadir@\" -I$(top_builddir) 
     2ALL_CFLAGS=-g -O -Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DDATADIR=\"@datadir@\" -I$(top_srcdir) 
    33 
    44libopkg_includedir=$(includedir)/libopkg 
  • trunk/src/target/opkg/src/opkg-frontend.c

    r4029 r4051  
    1919*/ 
    2020 
    21 #include "libopkg.h" 
     21#include <libopkg/libopkg.h> 
    2222 
    2323/* This is really small, eh? ;-) */ 
  • trunk/src/target/opkg/tests/Makefile.am

    r4049 r4051  
    44opkg_hash_test_LDADD = $(top_builddir)/libbb/libbb.la $(top_builddir)/libopkg/libopkg.la 
    55opkg_hash_test_SOURCES = opkg_hash_test.c 
    6 opkg_hash_test_CFLAGS = $(ALL_CFLAGS) -I$(top_builddir) 
     6opkg_hash_test_CFLAGS = $(ALL_CFLAGS) -I$(top_srcdir) 
    77 
    88opkg_extract_test_LDADD = $(top_builddir)/libbb/libbb.la $(top_builddir)/libopkg/libopkg.la 
    99opkg_extract_test_SOURCES = opkg_extract_test.c 
    10 opkg_extract_test_CFLAGS = $(ALL_CFLAGS) -I$(top_builddir) 
     10opkg_extract_test_CFLAGS = $(ALL_CFLAGS) -I$(top_srcdir) 
    1111 
    1212 
  • trunk/src/target/opkg/tests/opkg_extract_test.c

    r4049 r4051  
    11#include <stdio.h> 
    22#include <stdlib.h> 
    3 #include "libbb/libbb.h" 
     3#include <libbb/libbb.h> 
    44 
    55/* 
  • trunk/src/target/opkg/tests/opkg_hash_test.c

    r4049 r4051  
    1616*/ 
    1717 
    18 #include "opkg.h" 
     18#include <libopkg/opkg.h> 
    1919 
    20 #include "hash_table.h" 
    21 #include "opkg_utils.h" 
    22 #include "pkg_hash.h" 
     20#include <libopkg/hash_table.h> 
     21#include <libopkg/opkg_utils.h> 
     22#include <libopkg/pkg_hash.h> 
    2323 
    2424int main(int argc, char *argv[]) 
Note: See TracChangeset for help on using the changeset viewer.