#! /bin/bash

for d
do
  case "$d" in
  (-DPACKAGE*) ;;
  (*) echo -n " $d" ;;
  esac
done

