diff --git a/packages/debug/test-rpmatch/build b/packages/debug/test-rpmatch/build deleted file mode 100755 index a06dddbba7..0000000000 --- a/packages/debug/test-rpmatch/build +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -. config/options - -$SCRIPTS/build toolchain - -make -C $BUILD/$1 diff --git a/packages/debug/test-rpmatch/install b/packages/debug/test-rpmatch/install deleted file mode 100755 index ec574d26bb..0000000000 --- a/packages/debug/test-rpmatch/install +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -. config/options - -PKG_DIR=`find $PACKAGES -type d -name $1` - -mkdir -p $INSTALL/usr/bin -cp -f $BUILD/$1/test $INSTALL/usr/bin/test-rpmatch diff --git a/packages/debug/test-rpmatch/sources/Makefile b/packages/debug/test-rpmatch/sources/Makefile deleted file mode 100644 index ea4dfb40b3..0000000000 --- a/packages/debug/test-rpmatch/sources/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -CC ?= gcc -# CFLAGS = -static -Wall -g3 -ggdb3 -Os -LDFLAGS = - -SRCS = test.c -PROG = test - -all: $(PROG) - -$(PROG): $(SRCS) - $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ - -clean: - rm -f $(PROG) diff --git a/packages/debug/test-rpmatch/sources/test.c b/packages/debug/test-rpmatch/sources/test.c deleted file mode 100644 index 70e486e4c9..0000000000 --- a/packages/debug/test-rpmatch/sources/test.c +++ /dev/null @@ -1,19 +0,0 @@ -#define _SVID_SOURCE -#include -#include -#include -#include - -int -main(int argc, char *argv[]) -{ - if (argc != 2 || strcmp(argv[1], "--help") == 0) { - fprintf(stderr, "%s response", argv[0]); - exit(EXIT_FAILURE); - } - - setlocale(LC_ALL, ""); - printf("rpmatch() returns: %d", rpmatch(argv[1])); - exit(EXIT_SUCCESS); -} -