Aspectcut Pointcut con parámetros de anotación

Estoy usando Aspectj para interceptar métodos que están anotados con@Profile(description="something")

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Profile {
    public String description() default "";
}

@Around("com.merc.aop.ctw.aspect.PointcutDefinitions.logAnnotatedMethods(profile)")
public Object profile(ProceedingJoinPoint pjp, Profile profile) throws Throwable {
    ....
}

@Pointcut("@annotation(com.merc.annotations.Profile)")
protected void logAnnotatedMethods(Profile profile) {
}

Pero recibo el siguiente mensaje de error al compilar usando AJC

formal unbound in pointcut 

Respuestas a la pregunta(2)

Su respuesta a la pregunta